From mailer-daemon at mail.core5halo.com Sat Aug 2 09:11:28 2008 From: mailer-daemon at mail.core5halo.com (mailer-daemon at mail.core5halo.com) Date: 2 Aug 2008 09:11:28 -0000 Subject: [Parted-maintainers] failure notice Message-ID: text : Sorry, no mailbox here by that name. (#5.1.1) --- Below this line is a copy of the message. Return-Path: Received: (qmail 20826 invoked by uid 5007); 2 Aug 2008 09:11:27 -0000 Received: from unknown (HELO win2006) (117.47.69.215) by boredomtwo.com with SMTP; 2 Aug 2008 09:11:27 -0000 Content-Return: allowed X-Mailer: CME-V6.5.4.3; MSN Return-Path: communications_msn_cs_enus at cimail15.msn.com Message-Id: <20080802-81255.3425.qmail at win2006> To: Subject: Paris Hilton Free Video. From: MIME-Version: 1.0 Content-Type: text/html; charset="UTF-8" Content-Transfer-Encoding: 7bit
Paris Hilton Scandal Home Video!

From agx at sigxcpu.org Thu Aug 7 10:19:46 2008 From: agx at sigxcpu.org (Guido =?UTF-8?Q?G=C3=BCnther?=) Date: Thu, 7 Aug 2008 12:19:46 +0200 Subject: [Parted-maintainers] Bug#440675: Patches updated for 1.8.8.git.2008.03.24-8 Message-ID: <20080807101946.GA3899@bogon.ms20.nix> Hi Otavio, Just to make merging easier: This is the git tree as mentioned on debian-boot. http://git.debian.org/git/users/agx/parted1.8.git I additionally attach the patch to this mail so we have it in the BTS. -- Guido -------------- next part -------------- A non-text attachment was scrubbed... Name: 0001-linux-device-mapper-map-type-detection.patch Type: text/x-diff Size: 0 bytes Desc: not available Url : http://lists.alioth.debian.org/pipermail/parted-maintainers/attachments/20080807/41816433/attachment.patch From agx at sigxcpu.org Thu Aug 7 10:11:36 2008 From: agx at sigxcpu.org (Guido Guenther) Date: Thu, 7 Aug 2008 12:11:36 +0200 Subject: [PATCH] linux device-mapper map type detection Message-ID: detect the type of the device map and add it to the displayed type information. This is also included in upstream parted. --- include/parted/linux.h | 1 + libparted/arch/linux.c | 57 +++++++++++++++++++++++++++++++++++++++++++++++- 2 files changed, 57 insertions(+), 1 deletions(-) diff --git a/include/parted/linux.h b/include/parted/linux.h index 05a2f0e..1b0d8f8 100644 --- a/include/parted/linux.h +++ b/include/parted/linux.h @@ -32,6 +32,7 @@ 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. */ diff --git a/libparted/arch/linux.c b/libparted/arch/linux.c index 9876956..14baa69 100644 --- a/libparted/arch/linux.c +++ b/libparted/arch/linux.c @@ -301,6 +301,44 @@ _is_sx8_major (int major) #ifdef ENABLE_DEVICE_MAPPER static int +_dm_maptype (PedDevice* dev) +{ + LinuxSpecific* arch_specific = LINUX_SPECIFIC (dev); + struct dm_task *dmt; + void *next = NULL; + uint64_t start, length; + char *target_type = NULL; + char *params; + int r = -1; + const char* dev_dir = getenv ("DM_DEV_DIR"); + + if (dev_dir && *dev_dir && !dm_set_dev_dir(dev_dir)) + return r; + + if (!(dmt = dm_task_create(DM_DEVICE_TABLE))) + return r; + + if (!dm_task_set_name(dmt, dev->path)) + goto bad; + + dm_task_no_open_count(dmt); + + if (!dm_task_run(dmt)) + goto bad; + + next = dm_get_next_target(dmt, next, &start, &length, + &target_type, ¶ms); + + arch_specific->dmtype = strdup(target_type); + if (arch_specific->dmtype == NULL) + goto bad; + r = 0; +bad: + dm_task_destroy(dmt); + return r; +} + +static int readFD (int fd, char **buf) { char* p; @@ -488,6 +526,12 @@ _device_probe_type (PedDevice* dev) #ifdef ENABLE_DEVICE_MAPPER } else if (_is_dm_major(dev_major)) { dev->type = PED_DEVICE_DM; + if (_dm_maptype(dev)) { + LinuxSpecific* arch_specific = LINUX_SPECIFIC (dev); + + arch_specific = LINUX_SPECIFIC (dev); + arch_specific->dmtype = strdup("unknown"); + } #endif } else if (dev_major == XVD_MAJOR && (dev_minor % 0x10 == 0)) { dev->type = PED_DEVICE_XVD; @@ -1105,6 +1149,8 @@ static PedDevice* linux_new (const char* path) { PedDevice* dev; + char* type; + LinuxSpecific* arch_specific; PED_ASSERT (path != NULL, return NULL); @@ -1120,6 +1166,8 @@ linux_new (const char* path) = (LinuxSpecific*) ped_malloc (sizeof (LinuxSpecific)); if (!dev->arch_specific) goto error_free_path; + arch_specific = LINUX_SPECIFIC (dev); + arch_specific->dmtype = NULL; dev->open_count = 0; dev->read_only = 0; @@ -1188,7 +1236,11 @@ linux_new (const char* path) #ifdef ENABLE_DEVICE_MAPPER case PED_DEVICE_DM: - if (!init_generic (dev, _("Linux device-mapper"))) + if (arch_specific->dmtype == NULL + || asprintf(&type, _("Linux device-mapper (%s)"), + arch_specific->dmtype) == -1) + goto error_free_arch_specific; + if (!init_generic (dev, type)) goto error_free_arch_specific; break; #endif @@ -1227,6 +1279,9 @@ linux_destroy (PedDevice* dev) ped_free (dev->arch_specific); ped_free (dev->path); ped_free (dev->model); +#ifdef ENABLE_DEVICE_MAPPER + ped_free (((LinuxSpecific*)dev->arch_specific)->dmtype); +#endif ped_free (dev); } -- 1.5.6.3 --J2SCkAp4GZ/dPZZf Content-Type: text/x-diff; charset=us-ascii Content-Disposition: attachment; filename="0002-Return-the-correct-partition-names-for-multipath-dev.patch" From agx at sigxcpu.org Thu Aug 7 14:18:21 2008 From: agx at sigxcpu.org (Guido =?UTF-8?Q?G=C3=BCnther?=) Date: Thu, 7 Aug 2008 16:18:21 +0200 Subject: [Parted-maintainers] Bug#440675: Patches updated for 1.8.8.git.2008.03.24-8 In-Reply-To: <20080807101946.GA3899@bogon.ms20.nix> References: <20080807101946.GA3899@bogon.ms20.nix> Message-ID: <20080807141820.GA20471@bogon.ms20.nix> On Thu, Aug 07, 2008 at 12:19:46PM +0200, Guido G?nther wrote: > Hi Otavio, > Just to make merging easier: This is the git tree as mentioned on > debian-boot. > http://git.debian.org/git/users/agx/parted1.8.git > I additionally attach the patch to this mail so we have it in the BTS. > -- Guido Until the RT has sorted out the current state in unstable/lenny an upload to experimental would be great. This would make sure we at least have the patches in a package _somewhere_ and I could simply pickup the udebs from there. Cheers, -- Guido From noreply at release.debian.org Thu Aug 7 16:39:16 2008 From: noreply at release.debian.org (Debian testing watch) Date: Thu, 07 Aug 2008 16:39:16 +0000 Subject: [Parted-maintainers] parted 1.8.8.git.2008.03.24-8 MIGRATED to testing Message-ID: FYI: The status of the parted source package in Debian's testing distribution has changed. Previous version: 1.7.1-5.1 Current version: 1.8.8.git.2008.03.24-8 -- This email is automatically generated; the Debian Release Team is responsible. See http://release.debian.org/testing-watch/ for more information. From owner at bugs.debian.org Sat Aug 9 18:03:19 2008 From: owner at bugs.debian.org (Debian Bug Tracking System) Date: Sat, 09 Aug 2008 18:03:19 +0000 Subject: [Parted-maintainers] Processed (with 10 errors): Unarchiving archived bugs affecting unstable or testing In-Reply-To: <20080809174620.GA25830@xanadu.blop.info> References: <20080809174620.GA25830@xanadu.blop.info> Message-ID: Processing commands for controlbugs.debian.org: > unarchive 99400 Unarchived Bug 99400 > unarchive 144876 Unarchived Bug 144876 > unarchive 148123 Unarchived Bug 148123 > unarchive 148150 Unarchived Bug 148150 > unarchive 190630 Unarchived Bug 190630 > unarchive 235611 Unarchived Bug 235611 > unarchive 245548 Unarchived Bug 245548 > unarchive 247648 Unarchived Bug 247648 > unarchive 284925 Unarchived Bug 284925 > unarchive 287070 Unarchived Bug 287070 > unarchive 289055 Unarchived Bug 289055 > unarchive 291945 Unarchived Bug 291945 > unarchive 293631 Unarchived Bug 293631 > unarchive 306804 Unarchived Bug 306804 > unarchive 311035 Unarchived Bug 311035 > unarchive 311220 Unarchived Bug 311220 > unarchive 321678 Unarchived Bug 321678 > unarchive 322884 Unarchived Bug 322884 > unarchive 322926 Unarchived Bug 322926 > unarchive 326723 Unarchived Bug 326723 > unarchive 332525 Unarchived Bug 332525 > unarchive 339717 Unarchived Bug 339717 > unarchive 348913 Unarchived Bug 348913 > unarchive 352029 Unarchived Bug 352029 > unarchive 356625 Unarchived Bug 356625 > unarchive 362288 Unarchived Bug 362288 > unarchive 364466 Unarchived Bug 364466 > unarchive 364992 Unarchived Bug 364992 > unarchive 368786 Unarchived Bug 368786 > unarchive 374004 Unarchived Bug 374004 > unarchive 376075 Unarchived Bug 376075 > unarchive 377049 Unarchived Bug 377049 > unarchive 378483 Unarchived Bug 378483 > unarchive 378890 Unarchived Bug 378890 > unarchive 379110 Unarchived Bug 379110 > unarchive 379367 Unarchived Bug 379367 > unarchive 379537 Unarchived Bug 379537 > unarchive 380739 Unarchived Bug 380739 > unarchive 380810 Unarchived Bug 380810 > unarchive 380831 Unarchived Bug 380831 > unarchive 385090 Unarchived Bug 385090 > unarchive 385265 Unarchived Bug 385265 > unarchive 386366 Unarchived Bug 386366 > unarchive 386467 Unarchived Bug 386467 > unarchive 386949 Unarchived Bug 386949 > unarchive 387057 Unarchived Bug 387057 > unarchive 389140 Unarchived Bug 389140 > unarchive 389871 Unarchived Bug 389871 > unarchive 390391 Unarchived Bug 390391 > unarchive 391022 Unarchived Bug 391022 > unarchive 391220 Unarchived Bug 391220 > unarchive 391849 Unarchived Bug 391849 > unarchive 391989 Unarchived Bug 391989 > unarchive 392852 Unarchived Bug 392852 > unarchive 393032 Unarchived Bug 393032 > unarchive 393970 Unarchived Bug 393970 > unarchive 394039 Unarchived Bug 394039 > unarchive 396303 Unarchived Bug 396303 > unarchive 397245 Unarchived Bug 397245 > unarchive 397346 Unarchived Bug 397346 > unarchive 398242 Unarchived Bug 398242 > unarchive 398524 Unarchived Bug 398524 > unarchive 398609 Unarchived Bug 398609 > unarchive 399021 Unarchived Bug 399021 > unarchive 399478 Unarchived Bug 399478 > unarchive 401855 Unarchived Bug 401855 > unarchive 402301 Unarchived Bug 402301 > unarchive 403273 Unarchived Bug 403273 > unarchive 403431 Unarchived Bug 403431 > unarchive 403585 > unarchive 403587 > unarchive 403590 > unarchive 403592 > unarchive 403599 > unarchive 403601 > unarchive 403645 Unarchived Bug 403645 > unarchive 403651 > unarchive 403673 > unarchive 403848 Unarchived Bug 403848 > unarchive 405630 Unarchived Bug 405630 > unarchive 406207 Unarchived Bug 406207 > unarchive 406285 Unarchived Bug 406285 > unarchive 408273 Unarchived Bug 408273 > unarchive 409063 Unarchived Bug 409063 > unarchive 409253 Unarchived Bug 409253 > unarchive 409688 Unarchived Bug 409688 > unarchive 411052 Unarchived Bug 411052 > unarchive 411522 Unarchived Bug 411522 > unarchive 413184 Unarchived Bug 413184 > unarchive 415421 Unarchived Bug 415421 > unarchive 416081 Unarchived Bug 416081 > unarchive 417142 Unarchived Bug 417142 > unarchive 417259 Unarchived Bug 417259 > unarchive 417469 Unarchived Bug 417469 > unarchive 417764 Unarchived Bug 417764 > unarchive 418229 Unarchived Bug 418229 > unarchive 419067 Unarchived Bug 419067 > unarchive 420764 Unarchived Bug 420764 > unarchive 421228 Unarchived Bug 421228 > unarchive 421607 Unarchived Bug 421607 > unarchive 423050 Unarchived Bug 423050 > unarchive 423205 Unarchived Bug 423205 > unarchive 424430 Unarchived Bug 424430 > unarchive 426154 Unarchived Bug 426154 > unarchive 426415 Unarchived Bug 426415 > unarchive 428686 Unarchived Bug 428686 > unarchive 428848 > unarchive 428957 > unarchive 430065 Unarchived Bug 430065 > unarchive 430379 Unarchived Bug 430379 > unarchive 430510 Unarchived Bug 430510 > unarchive 430667 Unarchived Bug 430667 > unarchive 435239 Unarchived Bug 435239 > unarchive 435922 Unarchived Bug 435922 > unarchive 435935 Unarchived Bug 435935 > unarchive 436170 Unarchived Bug 436170 > unarchive 436306 Unarchived Bug 436306 > unarchive 438326 Unarchived Bug 438326 > unarchive 438724 Unarchived Bug 438724 > unarchive 439591 Unarchived Bug 439591 > unarchive 439764 Unarchived Bug 439764 > unarchive 441755 Unarchived Bug 441755 > unarchive 442308 Unarchived Bug 442308 > unarchive 442635 Unarchived Bug 442635 > unarchive 442926 Unarchived Bug 442926 > unarchive 445011 Unarchived Bug 445011 > unarchive 445281 Unarchived Bug 445281 > unarchive 445308 Unarchived Bug 445308 > unarchive 446864 Unarchived Bug 446864 > unarchive 448025 Unarchived Bug 448025 > unarchive 448704 Unarchived Bug 448704 > unarchive 448802 Unarchived Bug 448802 > unarchive 449008 Unarchived Bug 449008 > unarchive 449541 Unarchived Bug 449541 > unarchive 449548 Unarchived Bug 449548 > unarchive 451395 Unarchived Bug 451395 > unarchive 451658 Unarchived Bug 451658 > unarchive 452470 Unarchived Bug 452470 > unarchive 454385 Unarchived Bug 454385 > unarchive 454447 Unarchived Bug 454447 > unarchive 454742 Unarchived Bug 454742 > unarchive 454822 Unarchived Bug 454822 > unarchive 454841 Unarchived Bug 454841 > unarchive 454868 Unarchived Bug 454868 > unarchive 459095 Unarchived Bug 459095 > unarchive 459155 Unarchived Bug 459155 > unarchive 459255 Unarchived Bug 459255 > unarchive 461603 Unarchived Bug 461603 > unarchive 464056 Unarchived Bug 464056 > unarchive 464956 Unarchived Bug 464956 > unarchive 464983 Unarchived Bug 464983 > unarchive 466182 Unarchived Bug 466182 > unarchive 466183 Unarchived Bug 466183 > unarchive 467786 Unarchived Bug 467786 > unarchive 467804 Unarchived Bug 467804 > unarchive 467929 Unarchived Bug 467929 > unarchive 469661 Unarchived Bug 469661 > unarchive 472040 Unarchived Bug 472040 > unarchive 472177 Unarchived Bug 472177 > unarchive 472892 Unarchived Bug 472892 > unarchive 474492 Unarchived Bug 474492 > unarchive 474850 Unarchived Bug 474850 > unarchive 475321 Unarchived Bug 475321 > unarchive 475355 Unarchived Bug 475355 > unarchive 475503 Unarchived Bug 475503 > unarchive 475985 Unarchived Bug 475985 > unarchive 478395 Unarchived Bug 478395 > unarchive 479500 Unarchived Bug 479500 > unarchive 480734 Unarchived Bug 480734 > unarchive 480940 Unarchived Bug 480940 > thanks Stopping processing here. Please contact me if you need assistance. Debian bug tracking system administrator (administrator, Debian Bugs database) From owner at bugs.debian.org Sat Aug 9 20:42:03 2008 From: owner at bugs.debian.org (Debian Bug Tracking System) Date: Sat, 09 Aug 2008 20:42:03 +0000 Subject: [Parted-maintainers] Bug#418704: marked as done (parted does not show existing partitions) References: <87wsipylcu.fsf@neumann.lab.ossystems.com.br> <20070411115628.6321.86351.reportbug@localhost> Message-ID: Your message dated Sat, 09 Aug 2008 17:38:57 -0300 with message-id <87wsipylcu.fsf at neumann.lab.ossystems.com.br> and subject line Fixed previously has caused the Debian Bug report #418704, regarding parted does not show existing partitions to be marked as done. This means that you claim that the problem has been dealt with. If this is not the case it is now your responsibility to reopen the Bug report if necessary, and/or fix the problem forthwith. (NB: If you are a system administrator and have no idea what this message is talking about, this may indicate a serious mail system misconfiguration somewhere. Please contact owner at bugs.debian.org immediately.) -- 418704: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=418704 Debian Bug Tracking System Contact owner at bugs.debian.org with problems -------------- next part -------------- An embedded message was scrubbed... From: Henrik Brautaset Aronsen Subject: parted does not show existing partitions Date: Wed, 11 Apr 2007 13:56:28 +0200 Size: 4750 Url: http://lists.alioth.debian.org/pipermail/parted-maintainers/attachments/20080809/5ce985fd/attachment.eml -------------- next part -------------- An embedded message was scrubbed... From: Otavio Salvador Subject: Fixed previously Date: Sat, 09 Aug 2008 17:38:57 -0300 Size: 2602 Url: http://lists.alioth.debian.org/pipermail/parted-maintainers/attachments/20080809/5ce985fd/attachment-0001.eml From dak at ftp-master.debian.org Sat Aug 9 22:10:03 2008 From: dak at ftp-master.debian.org (Archive Administrator) Date: Sat, 09 Aug 2008 22:10:03 +0000 Subject: [Parted-maintainers] Processing of parted_1.8.8.git.2008.03.24-9_amd64.changes Message-ID: parted_1.8.8.git.2008.03.24-9_amd64.changes uploaded successfully to localhost along with the files: parted_1.8.8.git.2008.03.24-9.dsc parted_1.8.8.git.2008.03.24-9.diff.gz parted_1.8.8.git.2008.03.24-9_amd64.deb parted-udeb_1.8.8.git.2008.03.24-9_amd64.udeb libparted1.8-10_1.8.8.git.2008.03.24-9_amd64.deb libparted1.8-udeb_1.8.8.git.2008.03.24-9_amd64.udeb libparted1.8-dev_1.8.8.git.2008.03.24-9_amd64.deb libparted1.8-dbg_1.8.8.git.2008.03.24-9_amd64.deb libparted1.8-i18n_1.8.8.git.2008.03.24-9_all.deb parted-doc_1.8.8.git.2008.03.24-9_all.deb Greetings, Your Debian queue daemon From installer at ftp-master.debian.org Sat Aug 9 22:17:03 2008 From: installer at ftp-master.debian.org (Debian Installer) Date: Sat, 09 Aug 2008 22:17:03 +0000 Subject: [Parted-maintainers] parted_1.8.8.git.2008.03.24-9_amd64.changes is NEW Message-ID: (new) libparted1.8-10_1.8.8.git.2008.03.24-9_amd64.deb optional libs The GNU Parted disk partitioning shared library GNU Parted is a program that allows you to create, destroy, resize, move and copy hard disk partitions. This is useful for creating space for new operating systems, reorganising disk usage, and copying data to new hard disks. This package contains the Parted binary and manual page. . This package contains libparted, the required shared library used by Parted. . Parted currently supports DOS, Mac, Sun, BSD, GPT, MIPS and PC98 disklabels/partition tables, as well as a 'loop' (raw disk) type which allows use on RAID/LVM. Filesystems which are currently fully supported are ext2, ext3, fat (FAT16 and FAT32), ReiserFS (with libreiserfs) and linux-swap. Parted can also detect and remove HFS (Mac OS), JFS, NTFS, UFS (Sun and HP), XFS and ASFS/AFFS/APFS (Amiga) filesystems, but cannot create, resize or check these filesystems yet. . Note that ReiserFS support is only enabled if you install the libreiserfs0.3-0 package. Since libreiserfs0.3-0 has been removed from sarge, ReiserFS support is not compiled in the default package. . The nature of this software means that any bugs could cause massive data loss. While there are no known bugs at the moment, they could exist, so please back up all important files before running it, and do so at your own risk. libparted1.8-dbg_1.8.8.git.2008.03.24-9_amd64.deb to pool/main/p/parted/libparted1.8-dbg_1.8.8.git.2008.03.24-9_amd64.deb libparted1.8-dev_1.8.8.git.2008.03.24-9_amd64.deb to pool/main/p/parted/libparted1.8-dev_1.8.8.git.2008.03.24-9_amd64.deb libparted1.8-i18n_1.8.8.git.2008.03.24-9_all.deb to pool/main/p/parted/libparted1.8-i18n_1.8.8.git.2008.03.24-9_all.deb libparted1.8-udeb_1.8.8.git.2008.03.24-9_amd64.udeb to pool/main/p/parted/libparted1.8-udeb_1.8.8.git.2008.03.24-9_amd64.udeb parted-doc_1.8.8.git.2008.03.24-9_all.deb to pool/main/p/parted/parted-doc_1.8.8.git.2008.03.24-9_all.deb parted-udeb_1.8.8.git.2008.03.24-9_amd64.udeb to pool/main/p/parted/parted-udeb_1.8.8.git.2008.03.24-9_amd64.udeb parted_1.8.8.git.2008.03.24-9.diff.gz to pool/main/p/parted/parted_1.8.8.git.2008.03.24-9.diff.gz parted_1.8.8.git.2008.03.24-9.dsc to pool/main/p/parted/parted_1.8.8.git.2008.03.24-9.dsc parted_1.8.8.git.2008.03.24-9_amd64.deb to pool/main/p/parted/parted_1.8.8.git.2008.03.24-9_amd64.deb Changes: parted (1.8.8.git.2008.03.24-9) unstable; urgency=low . [ Otavio Salvador ] * Bump package soname . [ Guido G?nther ] * Return the correct partition names for multipath devices * linux device-mapper map type detection (closes: #440675) Override entries for your package: libparted1.8-dbg_1.8.8.git.2008.03.24-9_amd64.deb - extra libdevel libparted1.8-dev_1.8.8.git.2008.03.24-9_amd64.deb - optional libdevel libparted1.8-i18n_1.8.8.git.2008.03.24-9_all.deb - optional libs libparted1.8-udeb_1.8.8.git.2008.03.24-9_amd64.udeb - extra debian-installer parted-doc_1.8.8.git.2008.03.24-9_all.deb - optional doc parted-udeb_1.8.8.git.2008.03.24-9_amd64.udeb - extra debian-installer parted_1.8.8.git.2008.03.24-9.dsc - source admin parted_1.8.8.git.2008.03.24-9_amd64.deb - optional admin Announcing to debian-devel-changes at lists.debian.org Closing bugs: 440675 Your package contains new components which requires manual editing of the override file. It is ok otherwise, so please be patient. New packages are usually added to the override file about once a week. You may have gotten the distribution wrong. You'll get warnings above if files already exist in other distributions. From installer at ftp-master.debian.org Sun Aug 10 02:04:39 2008 From: installer at ftp-master.debian.org (Debian Installer) Date: Sun, 10 Aug 2008 02:04:39 +0000 Subject: [Parted-maintainers] parted_1.8.8.git.2008.03.24-9_amd64.changes ACCEPTED Message-ID: Accepted: libparted1.8-10_1.8.8.git.2008.03.24-9_amd64.deb to pool/main/p/parted/libparted1.8-10_1.8.8.git.2008.03.24-9_amd64.deb libparted1.8-dbg_1.8.8.git.2008.03.24-9_amd64.deb to pool/main/p/parted/libparted1.8-dbg_1.8.8.git.2008.03.24-9_amd64.deb libparted1.8-dev_1.8.8.git.2008.03.24-9_amd64.deb to pool/main/p/parted/libparted1.8-dev_1.8.8.git.2008.03.24-9_amd64.deb libparted1.8-i18n_1.8.8.git.2008.03.24-9_all.deb to pool/main/p/parted/libparted1.8-i18n_1.8.8.git.2008.03.24-9_all.deb libparted1.8-udeb_1.8.8.git.2008.03.24-9_amd64.udeb to pool/main/p/parted/libparted1.8-udeb_1.8.8.git.2008.03.24-9_amd64.udeb parted-doc_1.8.8.git.2008.03.24-9_all.deb to pool/main/p/parted/parted-doc_1.8.8.git.2008.03.24-9_all.deb parted-udeb_1.8.8.git.2008.03.24-9_amd64.udeb to pool/main/p/parted/parted-udeb_1.8.8.git.2008.03.24-9_amd64.udeb parted_1.8.8.git.2008.03.24-9.diff.gz to pool/main/p/parted/parted_1.8.8.git.2008.03.24-9.diff.gz parted_1.8.8.git.2008.03.24-9.dsc to pool/main/p/parted/parted_1.8.8.git.2008.03.24-9.dsc parted_1.8.8.git.2008.03.24-9_amd64.deb to pool/main/p/parted/parted_1.8.8.git.2008.03.24-9_amd64.deb Override entries for your package: libparted1.8-10_1.8.8.git.2008.03.24-9_amd64.deb - optional libs libparted1.8-dbg_1.8.8.git.2008.03.24-9_amd64.deb - extra libdevel libparted1.8-dev_1.8.8.git.2008.03.24-9_amd64.deb - optional libdevel libparted1.8-i18n_1.8.8.git.2008.03.24-9_all.deb - optional libs libparted1.8-udeb_1.8.8.git.2008.03.24-9_amd64.udeb - extra debian-installer parted-doc_1.8.8.git.2008.03.24-9_all.deb - optional doc parted-udeb_1.8.8.git.2008.03.24-9_amd64.udeb - extra debian-installer parted_1.8.8.git.2008.03.24-9.dsc - optional admin parted_1.8.8.git.2008.03.24-9_amd64.deb - optional admin Announcing to debian-devel-changes at lists.debian.org Closing bugs: 440675 Thank you for your contribution to Debian. From owner at bugs.debian.org Sun Aug 10 02:12:03 2008 From: owner at bugs.debian.org (Debian Bug Tracking System) Date: Sun, 10 Aug 2008 02:12:03 +0000 Subject: [Parted-maintainers] Bug#440675: marked as done (support multipath devices) References: <20070903153335.GA8710@bogon.ms20.nix> Message-ID: Your message dated Sun, 10 Aug 2008 02:04:39 +0000 with message-id and subject line Bug#440675: fixed in parted 1.8.8.git.2008.03.24-9 has caused the Debian Bug report #440675, regarding support multipath devices to be marked as done. This means that you claim that the problem has been dealt with. If this is not the case it is now your responsibility to reopen the Bug report if necessary, and/or fix the problem forthwith. (NB: If you are a system administrator and have no idea what this message is talking about, this may indicate a serious mail system misconfiguration somewhere. Please contact owner at bugs.debian.org immediately.) -- 440675: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=440675 Debian Bug Tracking System Contact owner at bugs.debian.org with problems -------------- next part -------------- An embedded message was scrubbed... From: Guido Guenther Subject: support multipath devices Date: Mon, 3 Sep 2007 17:33:36 +0200 Size: 6864 Url: http://lists.alioth.debian.org/pipermail/parted-maintainers/attachments/20080810/4030a69f/attachment.eml -------------- next part -------------- An embedded message was scrubbed... From: Otavio Salvador Subject: Bug#440675: fixed in parted 1.8.8.git.2008.03.24-9 Date: Sun, 10 Aug 2008 02:04:39 +0000 Size: 7987 Url: http://lists.alioth.debian.org/pipermail/parted-maintainers/attachments/20080810/4030a69f/attachment-0001.eml From owner at bugs.debian.org Sun Aug 10 15:42:24 2008 From: owner at bugs.debian.org (Debian Bug Tracking System) Date: Sun, 10 Aug 2008 15:42:24 +0000 Subject: [Parted-maintainers] Processed (with 2 errors): dealing with some more of the old bugs lucas unarchived In-Reply-To: <489EB7B1.3070805@p10link.net> References: <489EB7B1.3070805@p10link.net> Message-ID: Processing commands for controlbugs.debian.org: > #FTBFS on i386 bug, current lenny/sid version built fine on the i386 buildd > close 426415 2.4.6-1 Bug#426415: gimp: Build stalls 'close' is deprecated; see http://www.debian.org/Bugs/Developer#closing. Bug marked as fixed in version 2.4.6-1, send any further explanations to "Clayborne Arevalo" > #request to change a build dependency, current lenny/sid version has the > change Unknown command or malformed arguments to command. > close 426306 2.2.10-3 Bug#426306: Suspend function in laptop broken 'close' is deprecated; see http://www.debian.org/Bugs/Developer#closing. Bug marked as fixed in version 2.2.10-3, send any further explanations to Rodrigo Gadea > #complaint about non-free files in source, files are not there in current > #lenny/sid version > close 438326 3.1.1-3 Bug#438326: Source package contains non-free IETF RFC/I-D's 'close' is deprecated; see http://www.debian.org/Bugs/Developer#closing. Bug marked as fixed in version 3.1.1-3, send any further explanations to Simon Josefsson > #FTBFS on sparc bug, current lenny/sid version built fine on the sparc > buildd Unknown command or malformed arguments to command. > close 442308 1.8.8.git.2008.03.24-8 Bug#442308: parted_1.8.7.git.2007.07.30-1(sparc/experimental): FTBFS: C99 inline functions are not supported; using GNU89 'close' is deprecated; see http://www.debian.org/Bugs/Developer#closing. Bug marked as fixed in version 1.8.8.git.2008.03.24-8, send any further explanations to Frank Lichtenheld > #FTBFS if built twice in a row bug, current lenny/sid version FTBFS if built > #twice in a row in my lenny chroot > found 442635 1.2.1-3 Bug#442635: libgenerics: FTBFS if build twice in a row Bug marked as found in version 1.2.1-3 and reopened. > End of message, stopping processing here. Please contact me if you need assistance. Debian bug tracking system administrator (administrator, Debian Bugs database) From owner at bugs.debian.org Wed Aug 13 08:45:04 2008 From: owner at bugs.debian.org (Debian Bug Tracking System) Date: Wed, 13 Aug 2008 08:45:04 +0000 Subject: [Parted-maintainers] Bug#413184: marked as done ([powerpci/mac] partman-md appears to not write back the raid flag to partitions.) References: <200808131042.30002.thijs@debian.org> <20061110203009.4139.20941.reportbug@pegasos.powerlinux.fr> Message-ID: Your message dated Wed, 13 Aug 2008 10:42:25 +0200 with message-id <200808131042.30002.thijs at debian.org> and subject line Re: [powerpci/mac] partman-md appears to not write back the raid flag to partitions. has caused the Debian Bug report #413184, regarding [powerpci/mac] partman-md appears to not write back the raid flag to partitions. to be marked as done. This means that you claim that the problem has been dealt with. If this is not the case it is now your responsibility to reopen the Bug report if necessary, and/or fix the problem forthwith. (NB: If you are a system administrator and have no idea what this message is talking about, this may indicate a serious mail system misconfiguration somewhere. Please contact owner at bugs.debian.org immediately.) -- 413184: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=413184 Debian Bug Tracking System Contact owner at bugs.debian.org with problems -------------- next part -------------- An embedded message was scrubbed... From: Sven Luther Subject: [powerpci/mac] partman-md appears to not write back the raid flag to partitions. Date: Fri, 10 Nov 2006 21:30:09 +0100 Size: 2386 Url: http://lists.alioth.debian.org/pipermail/parted-maintainers/attachments/20080813/0e3e2c7b/attachment.eml -------------- next part -------------- An embedded message was scrubbed... From: Thijs Kinkhorst Subject: Re: [powerpci/mac] partman-md appears to not write back the raid flag to partitions. Date: Wed, 13 Aug 2008 10:42:25 +0200 Size: 2410 Url: http://lists.alioth.debian.org/pipermail/parted-maintainers/attachments/20080813/0e3e2c7b/attachment-0001.eml From contact at nutralica.eu Tue Aug 26 01:15:07 2008 From: contact at nutralica.eu (contact at nutralica.eu) Date: Tue, 26 Aug 2008 03:15:07 +0200 Subject: [Parted-maintainers] Vos Conditions professionnelles au laboratoire Nutralica Your professional conditions at the Nutralica laboratory Message-ID: <687bd545c89ee59e975ffc05e428a026@www.nutralica.eu> Madame, Monsieur, Cher(e) coll??gue Le laboratoire Nutralica a le plaisir de vous informer que de nouvelles modalit??s sont en place afin de faciliter l'acc??s des Professionnels de la sant?? aux sp??cialit??s distribu??es par le laboratoire. Ces modalit??s vous permettront maintenant de b??n??ficier automatiquement de conditions professionnelles sur vos commandes pass??es via internet. Pour cela il vous suffit de suivre les indications destin??es aux Professionnels de la sant?? inscrites sur la page d'accueil du site. Une nouvelle gamme de sp??cialit??s, d??di??e ?? l'enzymoth??rapie, sera bient??t disponible, une information vous sera envoy??e dans ce sens. Les sp??cialit??s tr??s novatrices composant cette gamme respectent les r??sultats d'analyses conformes aux crit??res microbiologiques des pr??parations pharmaceutiques de la cat??gorie 3b de la pharmacop??e europ??enne, comme tous les produits de Nutralica, permettant la d??livrance des codes d'enregistrement sanitaire et r??glementaire, en conformit?? vis-??-vis de la directive europ??enne CE/46/2002. Nutralica vous remercie de votre confiance et vous souhaite bonne visite sur son site. Laboratoire Nutralica France Fax : + 33 (0) 821 481 805 E-Mail : contact at nutralica.eu Site : www.nutralica.eu <../../../../> Dear Madam or Sir Nutralica laboratory inform you that put new methods in place in order to facilitate the access of the Professionals of health to the specialities distributed by the laboratory. These methods will now enable you to profit automatically from professional conditions to place an order via Internet. A new range of products , dedicated to the enzymotherapy, will be soon available. An information will be sent. This new range of products with an notorious physiological action is in conformity with the microbiological criteria of pharmaceutic preparations from category 3b in the european pharmacopoeia allowing the delivery of sanitary and legal registration codes, in conformity with the european directive CE/46/2002. Thanks to visit our website Sincerely Laboratoire Nutralica France Fax : + 33 (0) 821 481 805 E-Mail : contact at nutralica.eu Site : www.nutralica.eu <../../../../> -- -- Powered by PHPlist, www.phplist.com -- -------------- next part -------------- An HTML attachment was scrubbed... URL: http://lists.alioth.debian.org/pipermail/parted-maintainers/attachments/20080826/4999a4f1/attachment.htm From worldwrz at gmail.com Sun Aug 31 01:58:54 2008 From: worldwrz at gmail.com (World Wrz) Date: Sun, 31 Aug 2008 03:58:54 +0200 Subject: [Parted-maintainers] WORLD WRZ Message-ID: -------------- next part -------------- An HTML attachment was scrubbed... URL: http://lists.alioth.debian.org/pipermail/parted-maintainers/attachments/20080831/c4d3d01c/attachment.htm