Processing of pic2fig_1.4-3_amd64.changes
pic2fig_1.4-3_amd64.changes uploaded successfully to localhost along with the files: pic2fig_1.4-3.dsc pic2fig_1.4-3.diff.gz pic2fig_1.4-3_amd64.deb Greetings, Your Debian queue daemon -- To UNSUBSCRIBE, email to [EMAIL PROTECTED] with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]
Processing of divxcomp_0.1-4_amd64.changes
divxcomp_0.1-4_amd64.changes uploaded successfully to localhost along with the files: divxcomp_0.1-4.dsc divxcomp_0.1-4.diff.gz divxcomp_0.1-4_all.deb Greetings, Your Debian queue daemon -- To UNSUBSCRIBE, email to [EMAIL PROTECTED] with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]
Processing of medussa_0.8-5_amd64.changes
medussa_0.8-5_amd64.changes uploaded successfully to localhost along with the files: medussa_0.8-5.dsc medussa_0.8-5.diff.gz medussa_0.8-5_amd64.deb Greetings, Your Debian queue daemon -- To UNSUBSCRIBE, email to [EMAIL PROTECTED] with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]
divxcomp_0.1-4_amd64.changes ACCEPTED
Accepted: divxcomp_0.1-4.diff.gz to pool/main/d/divxcomp/divxcomp_0.1-4.diff.gz divxcomp_0.1-4.dsc to pool/main/d/divxcomp/divxcomp_0.1-4.dsc divxcomp_0.1-4_all.deb to pool/main/d/divxcomp/divxcomp_0.1-4_all.deb Override entries for your package: divxcomp_0.1-4.dsc - source utils divxcomp_0.1-4_all.deb - optional utils Announcing to [EMAIL PROTECTED] Thank you for your contribution to Debian. -- To UNSUBSCRIBE, email to [EMAIL PROTECTED] with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]
medussa_0.8-5_amd64.changes ACCEPTED
Accepted: medussa_0.8-5.diff.gz to pool/main/m/medussa/medussa_0.8-5.diff.gz medussa_0.8-5.dsc to pool/main/m/medussa/medussa_0.8-5.dsc medussa_0.8-5_amd64.deb to pool/main/m/medussa/medussa_0.8-5_amd64.deb Override entries for your package: medussa_0.8-5.dsc - source admin medussa_0.8-5_amd64.deb - optional admin Announcing to [EMAIL PROTECTED] Thank you for your contribution to Debian. -- To UNSUBSCRIBE, email to [EMAIL PROTECTED] with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]
pic2fig_1.4-3_amd64.changes ACCEPTED
Accepted: pic2fig_1.4-3.diff.gz to pool/main/p/pic2fig/pic2fig_1.4-3.diff.gz pic2fig_1.4-3.dsc to pool/main/p/pic2fig/pic2fig_1.4-3.dsc pic2fig_1.4-3_amd64.deb to pool/main/p/pic2fig/pic2fig_1.4-3_amd64.deb Override entries for your package: pic2fig_1.4-3.dsc - source graphics pic2fig_1.4-3_amd64.deb - optional graphics Announcing to [EMAIL PROTECTED] Thank you for your contribution to Debian. -- To UNSUBSCRIBE, email to [EMAIL PROTECTED] with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]
Processing of outguess_0.2-6_amd64.changes
outguess_0.2-6_amd64.changes uploaded successfully to localhost along with the files: outguess_0.2-6.dsc outguess_0.2-6.diff.gz outguess_0.2-6_amd64.deb Greetings, Your Debian queue daemon -- To UNSUBSCRIBE, email to [EMAIL PROTECTED] with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]
outguess_0.2-6_amd64.changes ACCEPTED
Accepted: outguess_0.2-6.diff.gz to pool/main/o/outguess/outguess_0.2-6.diff.gz outguess_0.2-6.dsc to pool/main/o/outguess/outguess_0.2-6.dsc outguess_0.2-6_amd64.deb to pool/main/o/outguess/outguess_0.2-6_amd64.deb Override entries for your package: outguess_0.2-6.dsc - source utils outguess_0.2-6_amd64.deb - optional utils Announcing to [EMAIL PROTECTED] Thank you for your contribution to Debian. -- To UNSUBSCRIBE, email to [EMAIL PROTECTED] with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]
Bug#426879: pmount list-mounts patch
Package: pmount Version: 0.9.13 Severity: wishlist Tags: patch Hello, I am using pmount on my computers for mounting of removable devices. However, I'm missing one feature: displaying a list of mounted removable devices. So I've made it myself :-). Other people might be interested in it as well, so I'm sending in the patch (see attch.). After applying the patch, pmount will print mounted removable devices if it is run without arguments. The new behaviour is similar to that of 'mount' command, but pmount will only list removable devices. Hope this helps. Best regards, Dan Keder -- Dan Keder http://www.fi.muni.cz/~xkeder/ diff -Naur pmount-0.9.13/src/pmount.c pmount-0.9.14/src/pmount.c --- pmount-0.9.13/src/pmount.c 2006-08-15 22:47:45.0 +0200 +++ pmount-0.9.14/src/pmount.c 2007-05-29 23:03:08.0 +0200 @@ -484,6 +484,21 @@ drop_root(); } +void +print_mounted_devs() +{ +struct mnt_entry mnt_entries[255]; +int size; +int i; + +size = list_mounts( "/proc/mounts", mnt_entries, 255); + +for( i = 0; i < size; i++ ) { +if( mnt_entries[i].removable ) +printf( "%s on %s\n", mnt_entries[i].mnt_device, mnt_entries[i].mnt_dir ); +} +} + /** * Entry point. */ @@ -582,6 +597,12 @@ } } while( option != -1 ); +/* print list of mounted devices */ +if( argc == 1 ) { +print_mounted_devs(); +return 0; +} + /* determine device and second (label/pid) argument */ if( optind < argc ) devarg = argv[optind]; diff -Naur pmount-0.9.13/src/policy.c pmount-0.9.14/src/policy.c --- pmount-0.9.13/src/policy.c 2006-08-15 23:00:37.0 +0200 +++ pmount-0.9.14/src/policy.c 2007-05-29 22:59:04.0 +0200 @@ -226,6 +226,64 @@ return value == '1'; } +int +_device_removable( const char* device ) +{ +struct sysfs_device *dev; +static char* hotplug_buses[] = { "usb", "ieee1394", "mmc", "pcmcia", NULL }; +int removable; +char blockdevpath[PATH_MAX]; + +dev = find_sysfs_device( device, blockdevpath, sizeof( blockdevpath ) ); +if( !dev ) { +debug( "device_removable: could not find a sysfs device for %s\n", device ); +return 0; +} + +debug( "device_removable: corresponding block device for %s is %s\n", +device, blockdevpath ); + +/* check whether device has "removable" attribute with value '1' */ +removable = get_blockdev_attr( blockdevpath, "removable" ); + +/* if not, fall back to bus scanning (regard USB and FireWire as removable) */ +if( !removable ) +removable = find_bus_ancestry( dev, hotplug_buses ); +sysfs_close_device( dev ); + +return removable; +} + +int +_device_valid( const char* device ) +{ +struct stat st; + +if( stat( device, &st ) ) { +return 0; +} + +if( !S_ISBLK( st.st_mode ) ) { +return 0; +} + +return 1; +} + +int +_get_uid_opt( const struct mntent* ent ) +{ +char* uidopt; +int uid; + +uidopt = hasmntopt( ent, "uid" ); +if( uidopt ) { +sscanf(uidopt, "uid=%d", &uid); +} else +uid = -1; +return uid; +} + /* * * Policy functions @@ -250,6 +308,45 @@ return 1; } +int +list_mounts( const char* fname, struct mnt_entry* entries, int max_size ) +{ +FILE* f; +struct mntent* ent; +struct mnt_entry entry; +char pathbuf[PATH_MAX]; +int removable; +int index; + +index = 0; + +if( !( f = fopen( fname, "r" ) ) ) { +perror( _("Error: could not open fstab-type file") ); +exit( 100 ); +} + +while( ( ent = getmntent( f ) ) != NULL ) { +if( index >= max_size ) +break; + +snprintf( entry.mnt_device, sizeof( entry.mnt_device ), "%s", ent->mnt_fsname ); +snprintf( entry.mnt_dir, sizeof( entry.mnt_dir ), "%s", ent->mnt_dir ); + +if( realpath( entry.mnt_device, pathbuf ) ) +strncpy( entry.mnt_device, pathbuf, MAX_LABEL_SIZE ); + +if( _device_valid( entry.mnt_device ) ) { +entry.uid = _get_uid_opt( ent ); +entry.removable = _device_removable ( entry.mnt_device ); +memcpy( &entries[index], &entry, sizeof(entry) ); +index++; +} +} +endmntent( f ); + +return index; +} + const char* fstab_has_device( const char* fname, const char* device, char* mntpt, int *uid ) { @@ -362,30 +459,14 @@ return mounted; } + + int device_removable( const char* device ) { -struct sysfs_device *dev; -static char* hotplug_buses[] = { "usb", "
imediff2 1.1.1-2 MIGRATED to testing
FYI: The status of the imediff2 source package in Debian's testing distribution has changed. Previous version: 1.1.1-1 Current version: 1.1.1-2 -- This email is automatically generated; [EMAIL PROTECTED] is responsible. See http://people.debian.org/~henning/trille/ for more information. -- To UNSUBSCRIBE, email to [EMAIL PROTECTED] with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]
Bug#424445: Proposed patch for #424445 (turkey FTBFS)
The attached patch sets JAVA_HOME and ant's build.compiler property, as recomended by the java packaging team. This solves the FTBFS. The resulting package works correctly with sun's java, but I have not been able to make it run with gcj. I do not know if it's a problem with the package or with my environment. Thus, I'm not tagging the bug as 'patch' yet. -- diff -r dc7e7243f5a5 debian/control --- a/debian/controlWed May 30 00:33:48 2007 -0500 +++ b/debian/controlWed May 30 07:59:53 2007 -0500 @@ -2,7 +2,7 @@ Section: text Section: text Priority: optional Maintainer: Debian QA Group <[EMAIL PROTECTED]> -Build-Depends: debhelper (>= 4.0.0), jikes, ant, bzip2, txt2man, imagemagick, java-gcj-compat-dev +Build-Depends: debhelper (>= 4.0.0), ant, bzip2, txt2man, imagemagick, java-gcj-compat-dev Standards-Version: 3.6.2 Package: turkey diff -r dc7e7243f5a5 debian/rules --- a/debian/rules Wed May 30 00:33:48 2007 -0500 +++ b/debian/rules Wed May 30 08:07:48 2007 -0500 @@ -1,13 +1,14 @@ #!/usr/bin/make -f DESTDIR=$(CURDIR)/debian/turkey +export JAVA_HOME=/usr/lib/jvm/java-1.5.0-gcj-4.1-1.5.0.0/jre build: build-stamp build-stamp: dh_testdir - ant release - ant doc + ant -Dbuild.compiler=modern release + ant -Dbuild.compiler=modern doc txt2man -s 1 -t turkey -B turkey turkey.1.txt2man > turkey.1 convert resources/icon.png -resize 32x32 turkey.xpm @@ -19,6 +20,7 @@ clean: rm -f build-stamp configure-stamp rm -f turkey.1 rm -f turkey.png + rm -f turkey.xpm ant clean -- signature.asc Description: Digital signature