Ja

2022-10-24 Thread Jerry Knape



Verstuurd vanaf mijn iPhones r 



Re: Missing makefile

2013-07-31 Thread Jerry Stuckle

On 7/31/2013 2:11 AM, Paul Wise wrote:

On Wed, Jul 31, 2013 at 5:05 AM, Jerry Stuckle wrote:


I'm trying to compile my first module for Debian (right now it doesn't do
anything - one step at a time :) ).

My makefile is:

obj-m = mymodule.o
KVERSION = $(shell uname -r)


Looks like you are talking about a Linux kernel module. How about
getting that merged into the upstream Linux kernel instead of
packaging it separately?



Because this is a specialized module to handle interrupts in a hardware 
controller.  It is not general purpose.



--
To UNSUBSCRIBE, email to debian-devel-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org
Archive: http://lists.debian.org/51f908c6.8050...@attglobal.net



Re: Missing makefile

2013-07-31 Thread Jerry Stuckle

On 7/31/2013 4:39 AM, Ben Hutchings wrote:

On Tue, 2013-07-30 at 23:05 -0400, Jerry Stuckle wrote:

Hi, all,

I hope this is the right list.

I'm trying to compile my first module for Debian (right now it doesn't
do anything - one step at a time :) ).

My makefile is:

obj-m = mymodule.o
KVERSION = $(shell uname -r)
all:
make -C /lib/modules/$(KVERSION)/build M-$(PWD) modules

[...]

You typed 'M-' instead of 'M='.

Ben.



Ben,

Thanks for catching that (it must have been later than I thought last 
night :) ).


However, that didn't change the problem.  I still get the missing 
Makefile message.



--
To UNSUBSCRIBE, email to debian-devel-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org
Archive: http://lists.debian.org/51f909c1.4010...@attglobal.net



Re: Missing makefile

2013-07-31 Thread Jerry Stuckle

On 7/31/2013 10:32 AM, Ben Hutchings wrote:

On Wed, 2013-07-31 at 08:57 -0400, Jerry Stuckle wrote:

On 7/31/2013 4:39 AM, Ben Hutchings wrote:

On Tue, 2013-07-30 at 23:05 -0400, Jerry Stuckle wrote:

Hi, all,

I hope this is the right list.

I'm trying to compile my first module for Debian (right now it doesn't
do anything - one step at a time :) ).

My makefile is:

obj-m = mymodule.o
KVERSION = $(shell uname -r)
all:
make -C /lib/modules/$(KVERSION)/build M-$(PWD) modules

[...]

You typed 'M-' instead of 'M='.

Ben.



Ben,

Thanks for catching that (it must have been later than I thought last
night :) ).

However, that didn't change the problem.  I still get the missing
Makefile message.


Your Makefile works for me with the typo fixed and a trivial mymodule.c:

#include linux/module.h
MODULE_LICENSE(GPL);

Please direct further questions to debian-user, as this is not on-topic
for debian-devel.

Ben.



Well, it still doesn't work for me.  No change in the error, and the 
file is still missing.


And compiling kernel modules is off-topic for debian-user.  It should, 
however, be on-topic here.


Of course, if you don't new modules (the hardware will eventually be 
available to the public), then we can always look at other distros.



--
To UNSUBSCRIBE, email to debian-devel-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org
Archive: http://lists.debian.org/51f924ed.7080...@attglobal.net



Re: Missing makefile

2013-07-31 Thread Jerry Stuckle

On 7/31/2013 11:09 AM, Chris Bannister wrote:

On Wed, Jul 31, 2013 at 10:53:33AM -0400, Jerry Stuckle wrote:


And compiling kernel modules is off-topic for debian-user.  It
should, however, be on-topic here.


Correct, but you are more likely to be directed to debian-mentors. Try
there.




Chris,

I looked at that list first, but it seems to be more for how to create 
packages.


In this case I think it's a bug in one of the packages.  Note that I am 
not directly calling 
/usr/src/linux-headers-3.2.0-4-common/scripts/Makefile.build - that's 
part of the make process.


That file is trying to call 
/usr/src/linux-headers-3.2.0-4-common/scripts/basic/Makefile, which 
doesn't exist.


The problem is I'm not sure which package(s) contain these files (and 
don't know how to check).  But obviously a make file in a package should 
not be calling another makefile unless it either contains the second 
makefile, or depends on the package which does.



--
To UNSUBSCRIBE, email to debian-devel-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org
Archive: http://lists.debian.org/51f9464d.9080...@attglobal.net



Re: Missing makefile

2013-07-31 Thread Jerry Stuckle

On 7/31/2013 2:39 PM, Adam D. Barratt wrote:

On Wed, 2013-07-31 at 10:53 -0400, Jerry Stuckle wrote:

And compiling kernel modules is off-topic for debian-user.  It should,
however, be on-topic here.


Not really, although I realise the longer description on
https://lists.debian.org/debian-devel/ could lead you to that
conclusion. As the short description better indicates, debian-devel is
focused on the development of the distribution, rather than development
on or using it.

Regards,

Adam




Adam,

Thanks for your reply.

OK, I can understand that.  However, then where do you get support for 
building modules with tools supplied by Debian - especially when there 
seems to be a bug in one of those tools, but can't figure out which tool 
to file a bug report against (or if it even is a bug - which I think it is)?


The mentors list doesn't seem to be appropriate, either.


--
To UNSUBSCRIBE, email to debian-devel-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org
Archive: http://lists.debian.org/51f95fe0.5010...@attglobal.net



Re: Missing makefile

2013-07-31 Thread Jerry Stuckle

On 7/31/2013 3:46 PM, Ben Hutchings wrote:

On Wed, 2013-07-31 at 15:05 -0400, Jerry Stuckle wrote:

On 7/31/2013 2:39 PM, Adam D. Barratt wrote:

On Wed, 2013-07-31 at 10:53 -0400, Jerry Stuckle wrote:

And compiling kernel modules is off-topic for debian-user.  It should,
however, be on-topic here.


Not really, although I realise the longer description on
https://lists.debian.org/debian-devel/ could lead you to that
conclusion. As the short description better indicates, debian-devel is
focused on the development of the distribution, rather than development
on or using it.

Regards,

Adam




Adam,

Thanks for your reply.

OK, I can understand that.  However, then where do you get support for
building modules with tools supplied by Debian - especially when there
seems to be a bug in one of those tools, but can't figure out which tool
to file a bug report against (or if it even is a bug - which I think it is)?

The mentors list doesn't seem to be appropriate, either.


It's not a bug in our packages, otherwise we would have hundreds of bug
reports of this already.

(My guess: you haven't installed the packages properly, for example you
made /usr/src a symlink.)

Ben.



Ben,

I'm not sure what would have been wrong.  I haven't made any additional 
symlinks other than some for Apache configuration files, etc. - nothing 
like /usr/src.


Additionally, there was one bug report (I don't have the number off 
hand) which was closed with no apparent (to me, at least) solution. 
Others have also experienced this problem - but again, I haven't been 
able to discern a resolution for any of these (other than one which was 
a change to the user's makefile).


Anyway, I've posted in debian-users; I'll see what goes there.


--
To UNSUBSCRIBE, email to debian-devel-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org
Archive: http://lists.debian.org/51f96e19.6020...@attglobal.net



Re: Missing makefile

2013-07-31 Thread Jerry Stuckle

On 7/31/2013 3:46 PM, Ben Hutchings wrote:

On Wed, 2013-07-31 at 15:05 -0400, Jerry Stuckle wrote:

On 7/31/2013 2:39 PM, Adam D. Barratt wrote:

On Wed, 2013-07-31 at 10:53 -0400, Jerry Stuckle wrote:

And compiling kernel modules is off-topic for debian-user.  It should,
however, be on-topic here.


Not really, although I realise the longer description on
https://lists.debian.org/debian-devel/ could lead you to that
conclusion. As the short description better indicates, debian-devel is
focused on the development of the distribution, rather than development
on or using it.

Regards,

Adam




Adam,

Thanks for your reply.

OK, I can understand that.  However, then where do you get support for
building modules with tools supplied by Debian - especially when there
seems to be a bug in one of those tools, but can't figure out which tool
to file a bug report against (or if it even is a bug - which I think it is)?

The mentors list doesn't seem to be appropriate, either.


It's not a bug in our packages, otherwise we would have hundreds of bug
reports of this already.

(My guess: you haven't installed the packages properly, for example you
made /usr/src a symlink.)

Ben.



Ben,

I should also add - I doubt there are many people trying to create new 
kernel modules for Debian which aren't being merged into the upstream 
kernel, so I'm not sure why there would be hundreds of bug reports.


Jerry


--
To UNSUBSCRIBE, email to debian-devel-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org
Archive: http://lists.debian.org/51f96ee7.8060...@attglobal.net



Missing makefile

2013-07-30 Thread Jerry Stuckle

Hi, all,

I hope this is the right list.

I'm trying to compile my first module for Debian (right now it doesn't 
do anything - one step at a time :) ).


My makefile is:

obj-m = mymodule.o
KVERSION = $(shell uname -r)
all:
make -C /lib/modules/$(KVERSION)/build M-$(PWD) modules
clean:
make -C /lib/modules/$(KVERSION)/build M=$(PWD) clean

When I try to run make, I get the following:

make -C /lib/modules/3.2.0-4-amd64/build M-/home/jerry modules
make[1]: Entering directory `/usr/src/linux-headers-3.2.0-4-amd64'
/usr/src/linux-headers-3.2.0-4-common/scripts/Makefile.build:44: 
/usr/src/linux-headers-3.2.0-4-common/scripts/basic/Makefile: No such 
file or directory
make[5]: *** No rule to make target 
`/usr/src/linux-headers-3.2.0-4-common/scripts/basic/Makefile'.  Stop.

snip rest

That is true - 
/usr/src/linux-headers-3.2.0-4-common/scripts/basic/Makefile does not exist.


I've googled for the problem and seen several others with similar 
problems (including a bug on the Debian list), but nothing stands out. 
I seem to have all of the packages needed, have run m-a update and m-a 
prepare, all with no change.


Has anyone seen this?  Any idea what I'm doing wrong?

TIA


--
To UNSUBSCRIBE, email to debian-devel-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org
Archive: http://lists.debian.org/51f87edd.2000...@attglobal.net



Accepted xastir 2.0.0-2 (source amd64)

2011-06-21 Thread Jerry Stueve
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA256

Format: 1.8
Date: Tue, 21 Jun 2011 19:25:00 +
Source: xastir
Binary: xastir
Architecture: source amd64
Version: 2.0.0-2
Distribution: unstable
Urgency: low
Maintainer: Debian Hams group debian-h...@lists.debian.org
Changed-By: Jerry Stueve k4...@arrl.net
Description: 
 xastir - X Amateur Station Tracking and Information Reporting
Closes: 623653
Changes: 
 xastir (2.0.0-2) unstable; urgency=low
 .
   * Upgrade to 3.9.2 packaging standard.
   * Remove direct dependency on libxp-dev package. (Closes: #623653)
   * Added patch file to support CVS since release for NWS updates.
Checksums-Sha1: 
 c82e102f63e256bfc9979366c0bf5ce4bb307171 2162 xastir_2.0.0-2.dsc
 b44798825a05f3628674c7e674352529a71f6c56 32570 xastir_2.0.0-2.debian.tar.gz
 a16f7b01f311b92f0c0c47ecc97f0bba8b592077 1538234 xastir_2.0.0-2_amd64.deb
Checksums-Sha256: 
 465ab7c47689c0395ee0d3db4e26de0adbdec5e1274e2374f5e17d799dca1ed4 2162 
xastir_2.0.0-2.dsc
 5696e2d169409120832adf42c60684cda4c6573dcd6582b1cbb6ad0e27e25fa9 32570 
xastir_2.0.0-2.debian.tar.gz
 cb10fde0dbc702e524fda9cf3674dea317d3b184ff1f35e85cb216485602defa 1538234 
xastir_2.0.0-2_amd64.deb
Files: 
 8742d26b3e2306c616d392e185d45be0 2162 hamradio extra xastir_2.0.0-2.dsc
 24ec5fb5da9ba73e4028ae238be24b23 32570 hamradio extra 
xastir_2.0.0-2.debian.tar.gz
 fa5bad2c8232268f7025c5f2f5958500 1538234 hamradio extra 
xastir_2.0.0-2_amd64.deb

-BEGIN PGP SIGNATURE-
Version: GnuPG v1.4.11 (GNU/Linux)

iQIcBAEBCAAGBQJOARRiAAoJEOf3EFVUCeQisj4P/RYpoyw2ayb3c/oNvTsV0vtx
zMuUUO9eYJqGXSd/RWWWZhKzBTNrPJBMi88fC4vSTaYADOoYV8BnTXX+vI9d0TTU
fhdCVtH8KCUYIZMDCwNvtI7rTjOeqt47v97BnGLcM2YvagJNkEieVhZRg+47O29K
E/3PR1r0iGjHsvA/wtxT5JM+CVmZT4/bR+zzYhJT23bDeS/ayGnsW8hB7DVBYGAS
b/XVWYxCkYkdJOWIGm4Whq1gp9TP0fm5Vkq8bUIuJx8i9Cf5eDRPxGC/LjBBPetq
iQVDTQD9hqWAMqg2HQCmvKDsNHVNOI2ou/cTuNffjYQ9zWL3VIsk/cQMdtyKbMY6
/hScX7XJKDI64onOvXJ9HuWt/BjIB5QV5Av44lWWP2CATrzrxeXPcZltuNrhSIAl
kIBjPMq5xH+DSkxMi4iTWy/SVa6D0/tasxaMsYSACtnvP+TYBAZeFZ92vVZO273G
l3Vpu9AZ2Ss8TMXXZfIx8NS38zQNY/8G1Ey+4TK/JjcKSu0kOo8n13+JbPUrYO/I
5ONrX8yhcSwYoNRnKI5oeW6TU6FZ3S7th/VKWyXlJbEXBoTkMg1S4RAfh7aMH5ao
xG6CYBq5ASRmwxomyBBifNZ5jk3whJL1jN1Ir7oW65NMg4u6CGEAzVDHUChzmCvd
fCQUVtOsbaHlNatcwXrk
=UtXa
-END PGP SIGNATURE-


Accepted:
xastir_2.0.0-2.debian.tar.gz
  to main/x/xastir/xastir_2.0.0-2.debian.tar.gz
xastir_2.0.0-2.dsc
  to main/x/xastir/xastir_2.0.0-2.dsc
xastir_2.0.0-2_amd64.deb
  to main/x/xastir/xastir_2.0.0-2_amd64.deb


-- 
To UNSUBSCRIBE, email to debian-devel-changes-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org
Archive: http://lists.debian.org/e1qz9gy-0007ep...@franck.debian.org



Accepted xastir 2.0.0-1 (source amd64)

2011-04-27 Thread Jerry Stueve
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA256

Format: 1.8
Date: Tue, 26 Apr 2011 13:15:00 +
Source: xastir
Binary: xastir
Architecture: source amd64
Version: 2.0.0-1
Distribution: unstable
Urgency: low
Maintainer: Debian Hams group debian-h...@lists.debian.org
Changed-By: Jerry Stueve k4...@arrl.net
Description: 
 xastir - X Amateur Station Tracking and Information Reporting
Closes: 159281 397144 521820 551578 561173 621450
Launchpad-Bugs-Fixed: 425475 492867 572620
Changes: 
 xastir (2.0.0-1) unstable; urgency=low
 .
   * Move db entry to front of list. (Closes: #621450)
   * Quiet some warnings in clean build.
   * Clean up build dependencies  suggests entries.
   * Suffer the misfortune of autoconf version changes.
   * Move to extra instead of optional to match priority doctrine.
   * Added patch files to support CVS upgrades since release.
   * Update to current upstream release.
 .
 xastir (1.9.9-2010-08-16-1) unstable; urgency=low
 .
   * Improve OSM support with tiling.
   * Incorporate CVS changes for topOSM tiling.
   * move manual link hook to dh support to get it right.
   * reapply setlocale to remove character set warning.
   * Improved config file processing (closes LP: #425475)
   * Added ID to uploaders list to support package.
 .
 xastir (1.9.9-2010-08-01-0.1) unstable; urgency=low
 .
   * NMU Improve OSM support with tiling.
 .
 xastir (1.9.9-0.1) unstable; urgency=low
 .
   * NMU Update to include OSM files since TigerMaps are off-line.
   * Fix X11 window lock-down with right mouse click (close LP: #572620)
 .
 xastir (1.9.8-0.1) unstable; urgency=low
 .
   * NMU to add new upstream release (closes: #551578)
 .
 xastir (1.9.6-0.1) unstable; urgency=low
 .
   * NMU to add new upstream release (closes: #551578)
   * Added fix from CVS for QuantumDepth problem with graphics files
   * changed build-dep for updated libproj-dev packaging (closes: #521820)
   * scripts are now based on installation prefix (closes: #561173, LP: #492867)
   * Add testdbfawk to installed set (closes: #397144)
   * Use command-line option -t to get internal SIGSEGV handler (closes: 
#159281)
   * Use mktemp to create temporary files in scripts (closes: CVE-2008-4987)
   * Added updated man pages from CVS to quiet lintian warnings
   * Switch to quilt format for patches
Checksums-Sha1: 
 b39ba7b3f312a9f4c259c921eb68564ec7c4e6d4 2173 xastir_2.0.0-1.dsc
 4dcb6445df134362353a49d34acf866250f205b7 2544827 xastir_2.0.0.orig.tar.gz
 a84677a46fd6e93a15d1912614b0f5cb1576bf0e 30409 xastir_2.0.0-1.debian.tar.gz
 6d8bb8eb0167565f51cc3e0dfbb49c4a1d463e6a 1539302 xastir_2.0.0-1_amd64.deb
Checksums-Sha256: 
 a9b436e313ae1df4552a082cee763e3b696c5ea0ae27345ce1e15d1d768c6332 2173 
xastir_2.0.0-1.dsc
 a7834f9adc802da8fb45c15656efa2f85a5b930dc414251af4cb6b490ddb7281 2544827 
xastir_2.0.0.orig.tar.gz
 02938f7ae631283edd4e1c061247d6900571bb004802ba8140f75dd16f58d7f1 30409 
xastir_2.0.0-1.debian.tar.gz
 f58a622940983c6963424f5c22fa4113f880867384357b122fc16b8e3093cfbc 1539302 
xastir_2.0.0-1_amd64.deb
Files: 
 07c4c8b41aea64343efa90e6702f43fd 2173 hamradio extra xastir_2.0.0-1.dsc
 3e660b8168c9037b06e20b0579af3c80 2544827 hamradio extra 
xastir_2.0.0.orig.tar.gz
 247c5eb6b06bea997250327ad731 30409 hamradio extra 
xastir_2.0.0-1.debian.tar.gz
 e0206f3a9ac9a4a71485222ac504 1539302 hamradio extra 
xastir_2.0.0-1_amd64.deb

-BEGIN PGP SIGNATURE-
Version: GnuPG v1.4.10 (GNU/Linux)

iQIcBAEBCAAGBQJNuIh+AAoJEOf3EFVUCeQigV4QAIIkP6IYmKp6FvJOHlFBp9EW
1RZHPFQeKaa362j0Xs7HT/IyNlkHMBafTUHjDulFyj+MGv/GODpKGmO5qB81MYzN
hjFC0zPXvO7qRpTigr6jpa7pAu7phzhOCQNRfeE8dDU/wzibGypYehzKcmAUtjMO
bkEWozejxuq4cZwOocwLiccfZhDlZ4QiLlYsgK5/txCGPGZGQZhk/c9aJIuquVY3
9QpmAOh2uz9DRA2oyvuYu/XTxBk2ztJOY9ubRqfPiHMiamnCGXgC61BVxHtVxWI/
vK4dJT7wK6m//WJrnxG6Whbx832RSnfEYJgsXOd0+RV5PbPFKbC4KviBOPiHJyda
8m7qizl+w79s8OgL/BwFP6QgswPu8THlhfogwnLT4WyeFl7whZttsGxbOctVbf+6
qjLF5UmxxdXAXiPklnKoQof5QKW4VZZ6dl5jSoIdRcdQiMLVUz8kBQKzmze7XOpt
pmZcW6TUSKW0EiR0Qh6rQmy0Ln/YKRAZpzkulTacMz1ei9J0yBtIug8MPqHuPBYk
z/NSQOgLFHkSKgFk4OmmpRj2EKGc6ihZy8fXeGcQ/E28g/4/kL0XjHqKpEZ99tlx
R1rpsxssTRDbyOngHSgOirJjynWLXwmp1n6JsMiJDdsRz2oQHgMmXPiKgopUm46h
1f3RCzLFd20qlECkhBjX
=zitS
-END PGP SIGNATURE-


Accepted:
xastir_2.0.0-1.debian.tar.gz
  to main/x/xastir/xastir_2.0.0-1.debian.tar.gz
xastir_2.0.0-1.dsc
  to main/x/xastir/xastir_2.0.0-1.dsc
xastir_2.0.0-1_amd64.deb
  to main/x/xastir/xastir_2.0.0-1_amd64.deb
xastir_2.0.0.orig.tar.gz
  to main/x/xastir/xastir_2.0.0.orig.tar.gz


-- 
To UNSUBSCRIBE, email to debian-devel-changes-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org
Archive: http://lists.debian.org/e1qfcen-0002aq...@franck.debian.org



Accepted linpsk 1.1-1 (source i386)

2010-08-23 Thread Jerry Stueve
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Sat, 21 Aug 2010 20:00:00 +
Source: linpsk
Binary: linpsk
Architecture: source i386
Version: 1.1-1
Distribution: unstable
Urgency: low
Maintainer: Debian Hamradio Maintainers debian-h...@lists.debian.org
Changed-By: Jerry Stueve k4...@arrl.net
Description: 
 linpsk - program for operating PSK31/RTTY modes with X GUI
Closes: 575243
Changes: 
 linpsk (1.1-1) unstable; urgency=low
 .
   * Move to alsa sound system (Closes: #575243)
   * Move to qt4 packaging
   * Add menu  desktop entries
   * Update standards revision to 3.9.1
   * Update to 3.0 (quilt) for patch management.
   * Update to debhelper 7
   * Correct spelling error in messages.
Checksums-Sha1: 
 9bc49d1f6bf5fa4710a073256db5c1bf1d0a03cb 1322 linpsk_1.1-1.dsc
 523a3b6f944845b5ebdcb71db84a8142c9a8dbaa 116179 linpsk_1.1.orig.tar.gz
 e89e0eef68cf7087bbf07a3b73e285dedabc6852 6184 linpsk_1.1-1.debian.tar.gz
 75197c516dd7713bdba4f45feb3950c7bcce5b16 176764 linpsk_1.1-1_i386.deb
Checksums-Sha256: 
 ffb9497dcae43a86a5e0a69eb0a1f567c5f9dbdb591c424e272818de6de0b2bf 1322 
linpsk_1.1-1.dsc
 92a0020585613b9d22e74d4d1c70f8477011e897ccfb699bf15c970ffec389ea 116179 
linpsk_1.1.orig.tar.gz
 65b2b907e66d121dafa2578f3f4120b86a045cec248812636ef557a25d1a32e6 6184 
linpsk_1.1-1.debian.tar.gz
 8cf874b45c88389730a0e65f4eeb93c7d379bd741c6cd64975fd6c9c9ce8de55 176764 
linpsk_1.1-1_i386.deb
Files: 
 a3f682ea6e74ac0c8f48d1dc75455a5f 1322 hamradio optional linpsk_1.1-1.dsc
 9a5bad0a86ef34d33a38bfad73fe3f4c 116179 hamradio optional 
linpsk_1.1.orig.tar.gz
 468670271cdc61242107576f253042af 6184 hamradio optional 
linpsk_1.1-1.debian.tar.gz
 10e0cac64a797704a08d6fb3102fdce9 176764 hamradio optional linpsk_1.1-1_i386.deb

-BEGIN PGP SIGNATURE-
Version: GnuPG v1.4.10 (GNU/Linux)

iEYEARECAAYFAkxyrt0ACgkQj2OPlhswRc7J/ACfUKcloK698KKSWbFMRTUMqqSi
iCgAoMDzUMT+usv88Td40crbVYv4BWOJ
=o921
-END PGP SIGNATURE-


Accepted:
linpsk_1.1-1.debian.tar.gz
  to main/l/linpsk/linpsk_1.1-1.debian.tar.gz
linpsk_1.1-1.dsc
  to main/l/linpsk/linpsk_1.1-1.dsc
linpsk_1.1-1_i386.deb
  to main/l/linpsk/linpsk_1.1-1_i386.deb
linpsk_1.1.orig.tar.gz
  to main/l/linpsk/linpsk_1.1.orig.tar.gz


-- 
To UNSUBSCRIBE, email to debian-devel-changes-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org
Archive: http://lists.debian.org/e1onb6w-0005kp...@franck.debian.org



New Home Theater Review Website - HomeTheaterReview.com

2008-12-10 Thread Jerry Del Colliano
PRESS RELEASE
Contact: Jerry Del Colliano, 310.860.9988

New Home Theater and AUDIO/VIDEO Review Site Launches at HomeTheaterReview.com

BEVERLY HILLS, CA ­ December 10, 2008 ­ Leading home entertainment industry 
publisher Jerry Del Colliano announced his latest venture today with the launch 
of a comprehensive home theater review site at HomeTheaterReview.com. Del 
Colliano has a proven record of building web properties; he is the founder of 
AVRev.com, ModernHomeTheater.com and AVRevForum.com, which were sold to 
Internet Brands Inc. in February 2008.

Del Colliano's newest online home theater publication will review all of the 
latest and most relevant LCD and plasma HDTVs, Blu-ray players, HDMI receivers, 
audiophile-grade loudspeakers and thousands of other high-end audiophile and 
home theater components. Each of the site's 27 product section pages comes 
complete with Wikipedia-style pages to which readers can sign on to suggest 
edits and additions. Each review will have a robust social networking section, 
enabling consumers to add their opinions to the depth of content.

The site also features sweepstakes for consumers and boasts a healthy email 
list for both consumers and A/V dealers. The current giveaway is a $300 Sony 
Blu-ray player and the 6-disc James Bond Blu-ray box set.

HomeTheaterReview.com is designed to quickly become the definitive home 
theater publication of any medium, says publisher Jerry Del Colliano. A 
consumer in the market for a new HDTV can rely on the knowledge that we have 
reviewed any and all products he or she would consider for purchase. Each 
review comes with the type of advice you would expect from your most 
well-informed, tech-savvy friends. Our reviewers aren't issuing their reviews 
from some ivory tower. HomeTheaterReview.com is designed to be social, allowing 
the most enthusiastic home theater fans to not just read our reviews, but truly 
be a part of the site. Our readers can make their voices heard right on the 
review page, edit wiki-pages and interact with our editorial staff in ways they 
could never do with any print magazine.

The new publication's editorial and sales staff is filled with seasoned 
veterans, including managing editor Andrew Robinson (from AVRev.com), associate 
editor Ken Taraszka M.D. (from AVRev.com), Adrienne Maxwell (former editor with 
Home Theater magazine) and contributors such as Ken Kessler, Kevin Miller, 
Brian Kahn, Krissy Rushing and many others. Christina Yuin, a 25-year veteran 
saleswoman in the A/V business (Absolute Sound, Stereophile, AVI, Home Theater 
and Sound  Vision) will be director of sales for HomeTheaterReview.com.

The site is best seen at http://hometheaterreview.com. Newsletter subscriptions 
are free at http://hometheaterreview.com/subscribe

Linkbacks are GREATLY appreciated. We also can trade links from our other 
sites. Email to discuss.

For more information, contact Jerry Del Colliano at 310.860.9988 or [EMAIL 
PROTECTED]



--
To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of unsubscribe. Trouble? Contact [EMAIL PROTECTED]



Bug#53121: YOU ARE A WINNER OF 250,000.00GBP contact REV JOHN SMITH

2007-03-08 Thread Jerry mcdade
The National Lottery
P O Box 1010
Liverpool, L70 1NL UNITED KINGDOM
(Customer Services)
Ref: UK/9420X2/68
Batch: 074/05/ZY369

National Lottery, 
28 Tan Field Road, 
Croydon, 
London. 
Ref: UK/9420X2/68 
Web site: www.national-lottery.co.uk/player/p/results/results.do 
We are pleased to inform you of the final announcement of the 
UK National Lottery Online thunderball Programme with draw 
numbers(#633)11, 12, 15, 28 ,30, 12 held on 07th Wed March,2007. 
 
Please contact:Rev. John smith 
email: [EMAIL PROTECTED] 
Email: provide details for filing of claims. 
Provide him with the information below: 
1.Name: 
2.Address 
3.Marital Status: 
4.Occupation: 
5.Age: 
6.Sex: 
7.Nationality: 
8.Country Of Residence: 
9.Telephone Number: 
10.Fax Number: 
11.Email Address: 
12.Draw Number above: 
You can go to our online result site to confirm 
the value of your winnings and also get a prize 
breakdown:-www.national-lottery.co.uk/player/p/results/results.do 
Yours faithfully, 
Deborah Roy 



-- 
To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of unsubscribe. Trouble? Contact [EMAIL PROTECTED]



Sell cisco networking items

2006-07-02 Thread Jerry

Hello:

   we are networking items resller , we sell lots of cisco networking 
items, such as GBIC,SFP, WICs, routers and switches, and so on.  so  if u 
are  interested in that , please tell us  the  quantity  and items NO. , 
then we  can  try to offer  the price  to u asap ,and  if  not  in the items 
lists ,  u  can  send  to us , too , then  we  can check for  u   asap,  too 
. so  if u have any , please send  ur  emails to  us , then  we  can  try 
to do  good  service  for u , thanks!


WS-G5483,WS-G5484,WS-G5486,WS-G5487,CAB-SS-232MT,CAB-V35-MT,CAB-OCT-V35-MT,CA
B-E1-BNC,GLC-SX-MM,GLC-LH-SM,
GLC-T,GLC-ZX-SM,WIC-1T,WIC-2T,WIC-1ADSL,WIC-1ENET,WIC-1DSU-T1,WIC-1DSU-T1-V2,
VWIC-2MFT-G703,VWIC-2MFT-T1,
2611XM (32F/128D),J4859A HP (Packing in plastic tray),CISCO1721 (32/64, 
new/retail),NM-4E,NM-2FE2W,10052,
CWDM-GBIC-1550,PA-POS-OC3SMI,WS-CAC-2500W= (Refurbished),HTB-1100 10/100M 
SC, and so on.

¡¡
Regards
Jerry Wan

ICQ:   313-100-216
MSN:   [EMAIL PROTECTED]
AIM/Yahoo IM: jerrywan99
Email: [EMAIL PROTECTED]








--
To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of unsubscribe. Trouble? Contact [EMAIL PROTECTED]



Accepted jsch 0.1.19-1 (all source)

2005-03-20 Thread Jerry Haltom
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.7
Date: Thu, 13 Jan 2005 16:07:20 -0600
Source: jsch
Binary: libjsch-java-doc libjsch-java
Architecture: source all
Version: 0.1.19-1
Distribution: unstable
Urgency: low
Maintainer: Jerry Haltom [EMAIL PROTECTED]
Changed-By: Jerry Haltom [EMAIL PROTECTED]
Description: 
 libjsch-java - java secure channel
 libjsch-java-doc - java secure channel examples
Changes: 
 jsch (0.1.19-1) unstable; urgency=low
 .
   * Initial release.
Files: 
 d15653b63ddb8aaa82cb975663fb 652 devel optional jsch_0.1.19-1.dsc
 51fa771ff08da17c0a02f933b722d391 84820 devel optional jsch_0.1.19.orig.tar.gz
 0d65a564fb839d103037214303f933fb 1942 devel optional jsch_0.1.19-1.diff.gz
 395605e520eadcb87bb1c7fef1f12f1a 133586 devel optional 
libjsch-java_0.1.19-1_all.deb
 0e2c8ed633d79834019f2a0477b0be40 21392 devel optional 
libjsch-java-doc_0.1.19-1_all.deb

-BEGIN PGP SIGNATURE-
Version: GnuPG v1.2.5 (GNU/Linux)

iD8DBQFB7S174vzFZu62tMIRAv4fAJwI+IUOw+Cbo/Htb6skv+iv/Yb1xgCfXCgA
IV8A/5z0YezbYOn37D2Hvt0=
=/O2V
-END PGP SIGNATURE-


Accepted:
jsch_0.1.19-1.diff.gz
  to pool/main/j/jsch/jsch_0.1.19-1.diff.gz
jsch_0.1.19-1.dsc
  to pool/main/j/jsch/jsch_0.1.19-1.dsc
jsch_0.1.19.orig.tar.gz
  to pool/main/j/jsch/jsch_0.1.19.orig.tar.gz
libjsch-java-doc_0.1.19-1_all.deb
  to pool/main/j/jsch/libjsch-java-doc_0.1.19-1_all.deb
libjsch-java_0.1.19-1_all.deb
  to pool/main/j/jsch/libjsch-java_0.1.19-1_all.deb


-- 
To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of unsubscribe. Trouble? Contact [EMAIL PROTECTED]



Accepted yelp 2.6.4-2 (i386 source)

2004-11-26 Thread Jerry Haltom
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.7
Date: Thu, 25 Nov 2004 22:29:17 -0600
Source: yelp
Binary: yelp
Architecture: source i386
Version: 2.6.4-2
Distribution: unstable
Urgency: low
Maintainer: Jerry Haltom [EMAIL PROTECTED]
Changed-By: Jerry Haltom [EMAIL PROTECTED]
Description: 
 yelp   - Help browser for GNOME 2
Closes: 282719
Changes: 
 yelp (2.6.4-2) unstable; urgency=low
 .
   * Removed the See Also section of the man page and added a pointer to
 the `--help' command line option. (closes: #282719)
Files: 
 5c1629cdd6fcf2f0d638a4d00aade04a 1558 gnome optional yelp_2.6.4-2.dsc
 ce2ae87d2d2f5828d011f5dac8463026 5070 gnome optional yelp_2.6.4-2.diff.gz
 3c41ba4c1088ae52cc130b95fe076d5c 321932 gnome optional yelp_2.6.4-2_i386.deb

-BEGIN PGP SIGNATURE-
Version: GnuPG v1.2.5 (GNU/Linux)

iD8DBQFBp1GBQxo87aLX0pIRAitxAKCyWH62g978hBWLmc4G0IIjZQdLYwCeIw+2
Bnzj2w/Isz0CNEj6rzcxGks=
=FRSs
-END PGP SIGNATURE-


Accepted:
yelp_2.6.4-2.diff.gz
  to pool/main/y/yelp/yelp_2.6.4-2.diff.gz
yelp_2.6.4-2.dsc
  to pool/main/y/yelp/yelp_2.6.4-2.dsc
yelp_2.6.4-2_i386.deb
  to pool/main/y/yelp/yelp_2.6.4-2_i386.deb


-- 
To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of unsubscribe. Trouble? Contact [EMAIL PROTECTED]



Accepted yelp 2.6.1-4 (i386 source)

2004-08-15 Thread Jerry Haltom
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.7
Date: Fri,  6 Aug 2004 22:04:17 -0500
Source: yelp
Binary: yelp
Architecture: source i386
Version: 2.6.1-4
Distribution: unstable
Urgency: low
Maintainer: J.H.M. Dassen (Ray) [EMAIL PROTECTED]
Changed-By: Jerry Haltom [EMAIL PROTECTED]
Description: 
 yelp   - Help browser for GNOME 2
Closes: 251081
Changes: 
 yelp (2.6.1-4) unstable; urgency=low
 .
   * Removed references to man and info from the description.
   * Replaced Conflict with gman with Replaces. Gman still has man and
 info page support, so some users might want to use it still.
 (closes: #251081)
   * Acknowledge NMU. Thanks Josselin! Reported and uploaded before I
 even noticed.
Files: 
 a0f34ecf4edc8d93d241249941d1a8fa 1540 gnome optional yelp_2.6.1-4.dsc
 72712280377acb2a39b70428568ef697 253896 gnome optional yelp_2.6.1-4.diff.gz
 e1f1ac7b68ea60ba6a817df407a92259 296552 gnome optional yelp_2.6.1-4_i386.deb

-BEGIN PGP SIGNATURE-
Version: GnuPG v1.2.5 (GNU/Linux)

iD8DBQFBH5av/HzwHc5k3nkRAqI/AKCoafiraFeor/tdHU58t5dbMxtjRwCfcMMR
f9U+djjExAEELoSzsKoiNi8=
=SNil
-END PGP SIGNATURE-


Accepted:
yelp_2.6.1-4.diff.gz
  to pool/main/y/yelp/yelp_2.6.1-4.diff.gz
yelp_2.6.1-4.dsc
  to pool/main/y/yelp/yelp_2.6.1-4.dsc
yelp_2.6.1-4_i386.deb
  to pool/main/y/yelp/yelp_2.6.1-4_i386.deb


-- 
To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of unsubscribe. Trouble? Contact [EMAIL PROTECTED]



Accepted gnome-netstatus 2.7.90-1 (i386 source)

2004-08-15 Thread Jerry Haltom
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.7
Date: Sun,  8 Aug 2004 14:25:32 -0500
Source: gnome-netstatus
Binary: gnome-netstatus-applet
Architecture: source i386
Version: 2.7.90-1
Distribution: experimental
Urgency: low
Maintainer: J.H.M. Dassen (Ray) [EMAIL PROTECTED]
Changed-By: Jerry Haltom [EMAIL PROTECTED]
Description: 
 gnome-netstatus-applet - Network status applet for GNOME 2
Changes: 
 gnome-netstatus (2.7.90-1) experimental; urgency=low
 .
   * New upstream release.
   * Acknowledge a number of previous NMUs. Thanks folks!
   * Removed relibtoolize patch. Upstream has done it.
Files: 
 6ea6b31828448a0b26421527e71295b7 1624 gnome optional gnome-netstatus_2.7.90-1.dsc
 46f40cb5048895cb601e4629a2bd322e 662875 gnome optional 
gnome-netstatus_2.7.90.orig.tar.gz
 47a64468d89318e616d22510f944a6f8 2101 gnome optional gnome-netstatus_2.7.90-1.diff.gz
 6d6a0f14fd423606ea3f85df51c40a9a 206702 gnome optional 
gnome-netstatus-applet_2.7.90-1_i386.deb

-BEGIN PGP SIGNATURE-
Version: GnuPG v1.2.5 (GNU/Linux)

iD8DBQFBH62z/HzwHc5k3nkRAqE8AJ0U1/GThvN7Y3sdekX/g2tzPfgpLwCgjsK9
QBUz2tQSII4CgixM+w/zwFo=
=Wbyy
-END PGP SIGNATURE-


Accepted:
gnome-netstatus-applet_2.7.90-1_i386.deb
  to pool/main/g/gnome-netstatus/gnome-netstatus-applet_2.7.90-1_i386.deb
gnome-netstatus_2.7.90-1.diff.gz
  to pool/main/g/gnome-netstatus/gnome-netstatus_2.7.90-1.diff.gz
gnome-netstatus_2.7.90-1.dsc
  to pool/main/g/gnome-netstatus/gnome-netstatus_2.7.90-1.dsc
gnome-netstatus_2.7.90.orig.tar.gz
  to pool/main/g/gnome-netstatus/gnome-netstatus_2.7.90.orig.tar.gz


-- 
To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of unsubscribe. Trouble? Contact [EMAIL PROTECTED]



Accepted yelp 2.6.1-1 (i386 source)

2004-04-22 Thread Jerry Haltom
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.7
Date: Thu, 22 Apr 2004 10:48:11 -0500
Source: yelp
Binary: yelp
Architecture: source i386
Version: 2.6.1-1
Distribution: experimental
Urgency: low
Maintainer: Jerry Haltom [EMAIL PROTECTED]
Changed-By: Jerry Haltom [EMAIL PROTECTED]
Description: 
 yelp   - Help browser for GNOME 2
Changes: 
 yelp (2.6.1-1) experimental; urgency=low
 .
   * New upstream release.
   * Adjusted build dependency versions and added libgtk2.0-dev.
Files: 
 05a12266e3a74a38bc6496cc18704c3a 1498 gnome optional yelp_2.6.1-1.dsc
 95f31e64224b857af1ec54b8628d760e 651382 gnome optional yelp_2.6.1.orig.tar.gz
 9c1d171ee42f2363415acdf2057a0c5d 128267 gnome optional yelp_2.6.1-1.diff.gz
 83d7b65e1bfe00ce0d53fdebfea11d47 295506 gnome optional yelp_2.6.1-1_i386.deb

-BEGIN PGP SIGNATURE-
Version: GnuPG v1.2.4 (GNU/Linux)

iD8DBQFAiBJmQxo87aLX0pIRAkbWAKC1CNw4GD8TM7ESyPsQ8CNTggUEzQCgix/o
uipwYslpgMpfKoHK6s4HNYU=
=7rBO
-END PGP SIGNATURE-


Accepted:
yelp_2.6.1-1.diff.gz
  to pool/main/y/yelp/yelp_2.6.1-1.diff.gz
yelp_2.6.1-1.dsc
  to pool/main/y/yelp/yelp_2.6.1-1.dsc
yelp_2.6.1-1_i386.deb
  to pool/main/y/yelp/yelp_2.6.1-1_i386.deb
yelp_2.6.1.orig.tar.gz
  to pool/main/y/yelp/yelp_2.6.1.orig.tar.gz


-- 
To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of unsubscribe. Trouble? Contact [EMAIL PROTECTED]



Accepted yelp 2.4.2-9 (i386 source)

2004-04-12 Thread Jerry Haltom
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.7
Date: Mon, 12 Apr 2004 09:22:26 -0500
Source: yelp
Binary: yelp
Architecture: source i386
Version: 2.4.2-9
Distribution: unstable
Urgency: low
Maintainer: Sebastien Bacher [EMAIL PROTECTED]
Changed-By: Jerry Haltom [EMAIL PROTECTED]
Description: 
 yelp   - Help browser for GNOME 2
Closes: 243305
Changes: 
 yelp (2.4.2-9) unstable; urgency=low
 .
   * Missing Build-Depends for gnome-pkg-tools and cdbs. (Closes: #243305)
Files: 
 97f134e2ab2a7594b811d8e3ef8623d6 1495 gnome optional yelp_2.4.2-9.dsc
 670216aaa53f6527bf758d2d7348019d 49985 gnome optional yelp_2.4.2-9.diff.gz
 eec5e80cdb960623ba0622249e30ac37 232724 gnome optional yelp_2.4.2-9_i386.deb

-BEGIN PGP SIGNATURE-
Version: GnuPG v1.2.4 (GNU/Linux)

iD8DBQFAeqzTQxo87aLX0pIRAkruAJ4pr8ghcmyqB/dnw/yqybW/GjtiQgCdGe83
Vzp5xdO6nfVvod3QoEu1l8g=
=Xjgx
-END PGP SIGNATURE-


Accepted:
yelp_2.4.2-9.diff.gz
  to pool/main/y/yelp/yelp_2.4.2-9.diff.gz
yelp_2.4.2-9.dsc
  to pool/main/y/yelp/yelp_2.4.2-9.dsc
yelp_2.4.2-9_i386.deb
  to pool/main/y/yelp/yelp_2.4.2-9_i386.deb


-- 
To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of unsubscribe. Trouble? Contact [EMAIL PROTECTED]



Accepted yelp 2.6.0-3 (i386 source)

2004-04-11 Thread Jerry Haltom
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.7
Date: Sun, 11 Apr 2004 14:00:13 -0500
Source: yelp
Binary: yelp
Architecture: source i386
Version: 2.6.0-3
Distribution: experimental
Urgency: low
Maintainer: Jerry Haltom [EMAIL PROTECTED]
Changed-By: Jerry Haltom [EMAIL PROTECTED]
Description: 
 yelp   - Help browser for GNOME 2
Changes: 
 yelp (2.6.0-3) experimental; urgency=low
 .
   * [debian/patches/01_relibtoolize.patch] New. Generated with new libtool to
 cut down on library dependencies.
   * Fixed some XML errors in debian/yelp.sgml man page.
Files: 
 8ebc4f8a87fec27a93fc0d8c6429def3 1474 gnome optional yelp_2.6.0-3.dsc
 66f35fdf5b8c55a0b165ee520defeff3 267120 gnome optional yelp_2.6.0-3.diff.gz
 e578a73c4905207bf43832236a4eb4cd 290204 gnome optional yelp_2.6.0-3_i386.deb

-BEGIN PGP SIGNATURE-
Version: GnuPG v1.2.4 (GNU/Linux)

iD8DBQFAedKYQxo87aLX0pIRAgEuAJ0eZ7/mqEVQL7U6TBnYGLRjhg6angCg4R1O
Q7OzLg2R4neXKbSMwcvj4w0=
=yJo7
-END PGP SIGNATURE-


Accepted:
yelp_2.6.0-3.diff.gz
  to pool/main/y/yelp/yelp_2.6.0-3.diff.gz
yelp_2.6.0-3.dsc
  to pool/main/y/yelp/yelp_2.6.0-3.dsc
yelp_2.6.0-3_i386.deb
  to pool/main/y/yelp/yelp_2.6.0-3_i386.deb


-- 
To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of unsubscribe. Trouble? Contact [EMAIL PROTECTED]



Accepted yelp 2.4.2-8 (i386 source)

2004-04-11 Thread Jerry Haltom
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.7
Date: Sun, 11 Apr 2004 14:03:41 -0500
Source: yelp
Binary: yelp
Architecture: source i386
Version: 2.4.2-8
Distribution: unstable
Urgency: low
Maintainer: Jerry Haltom [EMAIL PROTECTED]
Changed-By: Jerry Haltom [EMAIL PROTECTED]
Description: 
 yelp   - Help browser for GNOME 2
Changes: 
 yelp (2.4.2-8) unstable; urgency=low
 .
   * [debian/patches/04_relibtoolize.patch] New. Generated with new libtool to
 cut down on library dependencies.
   * Fixed some typos in yelp.sgml man page.
Files: 
 ad3481330dc27126f0110f4473340e7a 1472 gnome optional yelp_2.4.2-8.dsc
 96e20bebc199d279939913c9d750e8b8 49946 gnome optional yelp_2.4.2-8.diff.gz
 eec0feff764af3b9f07f67e90de6a0fb 232614 gnome optional yelp_2.4.2-8_i386.deb

-BEGIN PGP SIGNATURE-
Version: GnuPG v1.2.4 (GNU/Linux)

iD8DBQFAed0HQxo87aLX0pIRAgbeAKDE5Oym/FIX6F7jw12CB3o4tRTPnwCguN5c
00Yz1GHQJD83vre1z6IO5sU=
=xBXR
-END PGP SIGNATURE-


Accepted:
yelp_2.4.2-8.diff.gz
  to pool/main/y/yelp/yelp_2.4.2-8.diff.gz
yelp_2.4.2-8.dsc
  to pool/main/y/yelp/yelp_2.4.2-8.dsc
yelp_2.4.2-8_i386.deb
  to pool/main/y/yelp/yelp_2.4.2-8_i386.deb


-- 
To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of unsubscribe. Trouble? Contact [EMAIL PROTECTED]



Accepted yelp 2.6.0-2 (i386 source)

2004-04-04 Thread Jerry Haltom
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.7
Date: Sat,  3 Apr 2004 13:55:03 -0600
Source: yelp
Binary: yelp
Architecture: source i386
Version: 2.6.0-2
Distribution: experimental
Urgency: low
Maintainer: Jerry Haltom [EMAIL PROTECTED]
Changed-By: Jerry Haltom [EMAIL PROTECTED]
Description: 
 yelp   - Help browser for GNOME 2
Closes: 177167 181979 207439 217808 236203
Changes: 
 yelp (2.6.0-2) experimental; urgency=low
 .
   * Upstream changes not mentioned but important from initial 2.6.0-1 upload:
 + Upstream has removed man/info pages pending the finish of a complete
   rewrite. (Closes: #177167, #236203, #181979)
 + Upstream has redone the way the left side pane works. (Closes: #217808)
 + Rewrite of HTML transformations, resulting in 30(!) time speed increase,
   according to upstream. (Closes: #207439).
Files: 
 a17362fd020a4b53c8747125f3429a8b 1472 gnome optional yelp_2.6.0-2.dsc
 1e33a0d5a94c549bcd4e1d1113e19feb 4374 gnome optional yelp_2.6.0-2.diff.gz
 b89e4eff0a7aa77e9b2be3734dfa8c66 290352 gnome optional yelp_2.6.0-2_i386.deb

-BEGIN PGP SIGNATURE-
Version: GnuPG v1.2.4 (GNU/Linux)

iD8DBQFAcEWVQxo87aLX0pIRAqP5AJ9lYlyacZ3+9Pz8Yh3AOyEPRT2CQgCdHvE1
EvFoIs1v4K3FQSok8MjNHTc=
=7ZoS
-END PGP SIGNATURE-


Accepted:
yelp_2.6.0-2.diff.gz
  to pool/main/y/yelp/yelp_2.6.0-2.diff.gz
yelp_2.6.0-2.dsc
  to pool/main/y/yelp/yelp_2.6.0-2.dsc
yelp_2.6.0-2_i386.deb
  to pool/main/y/yelp/yelp_2.6.0-2_i386.deb


-- 
To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of unsubscribe. Trouble? Contact [EMAIL PROTECTED]



Accepted yelp 2.4.2-7 (i386 source)

2004-03-28 Thread Jerry Haltom
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.7
Date: Sun, 21 Mar 2004 15:25:40 -0600
Source: yelp
Binary: yelp
Architecture: source i386
Version: 2.4.2-7
Distribution: unstable
Urgency: low
Maintainer: Jerry Haltom [EMAIL PROTECTED]
Changed-By: Jerry Haltom [EMAIL PROTECTED]
Description: 
 yelp   - Help browser for GNOME 2
Changes: 
 yelp (2.4.2-7) unstable; urgency=low
 .
   * Migrated package to CDBS.
   * Added missing man pages for yelp and gnome-help.
   * Quoted some unquoted strings in the menu file.
Files: 
 6118d4ab3f65eda75a330843f7cdfe02 1381 gnome optional yelp_2.4.2-7.dsc
 d5bcc56b8b3887c2af7594dc486fc501 5534 gnome optional yelp_2.4.2-7.diff.gz
 6b8c4be4b3967085480831d057350ede 232536 gnome optional yelp_2.4.2-7_i386.deb

-BEGIN PGP SIGNATURE-
Version: GnuPG v1.2.4 (GNU/Linux)

iD8DBQFAZxSHQxo87aLX0pIRAr5YAKDktnJJZAWgaVffWCrMQYGrHDOp5ACZAULg
eDk1O6hViRJCcuzPyYiTfw8=
=rscH
-END PGP SIGNATURE-


Accepted:
yelp_2.4.2-7.diff.gz
  to pool/main/y/yelp/yelp_2.4.2-7.diff.gz
yelp_2.4.2-7.dsc
  to pool/main/y/yelp/yelp_2.4.2-7.dsc
yelp_2.4.2-7_i386.deb
  to pool/main/y/yelp/yelp_2.4.2-7_i386.deb


-- 
To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of unsubscribe. Trouble? Contact [EMAIL PROTECTED]



Accepted libxslt 1.1.4-1 (i386 source)

2004-03-28 Thread Jerry Haltom
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.7
Date: Sun, 28 Mar 2004 10:54:49 -0600
Source: libxslt
Binary: libxslt1-python2.3 xsltproc libxslt1 libxslt1.1 libxslt1-dev
Architecture: source i386
Version: 1.1.4-1
Distribution: unstable
Urgency: low
Maintainer: Graham Wilson [EMAIL PROTECTED]
Changed-By: Jerry Haltom [EMAIL PROTECTED]
Description: 
 libxslt1   - XSLT processing library - runtime library
 libxslt1-dev - XSLT processing library - development kit
 libxslt1-python2.3 - Python 2.3 bindings for libxslt1
 libxslt1.1 - XSLT processing library - runtime library
 xsltproc   - XSLT command line processor
Closes: 239682
Changes: 
 libxslt (1.1.4-1) unstable; urgency=low
 .
   * NMU, the new version is needed by gnome2.6.
   * New upstream release (Closes: #239682).
Files: 
 3c9812f1ca8ca096bf82e6543004cc7a 642 text optional libxslt_1.1.4-1.dsc
 25a136ec414ffcb66198e93f0d172f5a 2519687 text optional libxslt_1.1.4-1.tar.gz
 9c03146fea86325666c121e747f62146 439976 libdevel optional 
libxslt1-dev_1.1.4-1_i386.deb
 39d517c96c1d13e7cc942a8ad1b4e4fc 178800 libs optional libxslt1.1_1.1.4-1_i386.deb
 c09d158f27b991de29e4389484dddb4b 58648 libs optional libxslt1_1.1.4-1_i386.deb
 75ba6cb4b4ec97210caa748c38fc3947 81504 text optional xsltproc_1.1.4-1_i386.deb
 e60e0bbcb077d42392f00c7b4af4752e 104766 python optional 
libxslt1-python2.3_1.1.4-1_i386.deb

-BEGIN PGP SIGNATURE-
Version: GnuPG v1.2.4 (GNU/Linux)

iD8DBQFAZx1hQxo87aLX0pIRArc3AKC4Ie1dw0vHOXtbxDR6MiXOe74dHwCdGSzX
bCq3DdOqIB2BIbOOZ50H++k=
=PV8h
-END PGP SIGNATURE-


Accepted:
libxslt1-dev_1.1.4-1_i386.deb
  to pool/main/libx/libxslt/libxslt1-dev_1.1.4-1_i386.deb
libxslt1-python2.3_1.1.4-1_i386.deb
  to pool/main/libx/libxslt/libxslt1-python2.3_1.1.4-1_i386.deb
libxslt1.1_1.1.4-1_i386.deb
  to pool/main/libx/libxslt/libxslt1.1_1.1.4-1_i386.deb
libxslt1_1.1.4-1_i386.deb
  to pool/main/libx/libxslt/libxslt1_1.1.4-1_i386.deb
libxslt_1.1.4-1.dsc
  to pool/main/libx/libxslt/libxslt_1.1.4-1.dsc
libxslt_1.1.4-1.tar.gz
  to pool/main/libx/libxslt/libxslt_1.1.4-1.tar.gz
xsltproc_1.1.4-1_i386.deb
  to pool/main/libx/libxslt/xsltproc_1.1.4-1_i386.deb


-- 
To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of unsubscribe. Trouble? Contact [EMAIL PROTECTED]



Accepted yelp 2.6.0-1 (i386 source)

2004-03-28 Thread Jerry Haltom
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.7
Date: Fri, 19 Mar 2004 17:46:05 -0600
Source: yelp
Binary: yelp
Architecture: source i386
Version: 2.6.0-1
Distribution: experimental
Urgency: low
Maintainer: Jerry Haltom [EMAIL PROTECTED]
Changed-By: Jerry Haltom [EMAIL PROTECTED]
Description: 
 yelp   - Help browser for GNOME 2
Changes: 
 yelp (2.6.0-1) experimental; urgency=low
 .
   * New upstream release.
   * Packable build system converted to cdbs.
   * Took maintainership.
Files: 
 986e44db8a24618e0794c9090d5d0e1b 1472 gnome optional yelp_2.6.0-1.dsc
 3af7adb92beb880ab7d86c24037252ba 644920 gnome optional yelp_2.6.0.orig.tar.gz
 8ac69a5355e8e722d3393a5301f547de 4152 gnome optional yelp_2.6.0-1.diff.gz
 7794ae98d6b1cac5dbe7fd0f6c628bb5 290144 gnome optional yelp_2.6.0-1_i386.deb

-BEGIN PGP SIGNATURE-
Version: GnuPG v1.2.4 (GNU/Linux)

iD8DBQFAZzMFQxo87aLX0pIRAt9bAJ95BuaxIw9a7EHDasHTSd5U+p3T2QCfVVxx
YxKfpcn5Xf7kCg1qrgUFmoQ=
=7/B4
-END PGP SIGNATURE-


Accepted:
yelp_2.6.0-1.diff.gz
  to pool/main/y/yelp/yelp_2.6.0-1.diff.gz
yelp_2.6.0-1.dsc
  to pool/main/y/yelp/yelp_2.6.0-1.dsc
yelp_2.6.0-1_i386.deb
  to pool/main/y/yelp/yelp_2.6.0-1_i386.deb
yelp_2.6.0.orig.tar.gz
  to pool/main/y/yelp/yelp_2.6.0.orig.tar.gz


-- 
To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of unsubscribe. Trouble? Contact [EMAIL PROTECTED]



Common SSL CA Certificate Directory

2003-11-11 Thread Jerry Haltom
Does Debian by Policy have a standard directory to store Certificate
Authority certificates? I've run into the need to incorporate a
certificate into a number of services on my system: web browsers, email
clients, email servers, ldap clients, etc.

As of now, I am putting them into /etc/ssl/certs, and setting each
program to look their.

Should there be a policy about how to set up certificates in the Debian
system, so that maintainers could configure their packages to look in
that location?

-- 
Jerry Haltom [EMAIL PROTECTED]
Feedback Plus, Inc.




Package.gz signing

2003-10-04 Thread Jerry Haltom
I've been doing some research into the current state of GPG signing
official apt sources.

I've found a few conversations on this mailing circa 2000-2001 about
creating a Packages.gpg and a seperate update procedure for updating
this file, and then verifying Packages.gz against it.

I cannot find any information beyond this.

What is the current status of this? Do we hope to have this implemented
for Sarge? It would be a wonderful addition. It's something most other
distro's have that we don't.

Cheers.

-- 
Jerry Haltom [EMAIL PROTECTED]
Feedback Plus, Inc.




Re: Debian RC System/Init Scripts

2003-09-26 Thread Jerry Haltom
Good point. Statement not thought out well. I have no excuse. :D

On Thu, 2003-09-25 at 08:16, Steve Greenland wrote:
 On 24-Sep-03, 20:48 (CDT), Jerry Haltom [EMAIL PROTECTED] wrote: 
  Please don't denounce my efforts as Debian doesn't need parallel
  starts! Because I'd like to make it for myself, regardless what Debian
  needs.
  
  Anyways, mandated inclusion of lines such as DESC, NAME, etc in the
  scripts would help me...
 
 Am I the only one who sees the disconnect between these two statements?
 
 Steve
 -- 
 Steve Greenland
 The irony is that Bill Gates claims to be making a stable operating
 system and Linus Torvalds claims to be trying to take over the
 world.   -- seen on the net
-- 
Jerry Haltom [EMAIL PROTECTED]
Feedback Plus, Inc.




Re: Resolvconf -- a package to manage /etc/resolv.conf

2003-09-25 Thread Jerry Haltom
Are there plans to run up commands in interfaces after
dns-nameservers? Some of my up commands, and probably others, consist of
setting up static routes to other boxes. It is nice to be able to
specify these other boxes by name, and have it resolved using the name
servers set up by the resolvconf routine.

Also, this may seem a LITTLE bit silly, but can dns-domainnames be
provided with a name, which is then resolved into an IP and added to
resolvconf? This may seem a little pointless at first glance, but I (and
maybe others) run our own personal DNS servers at my house (on a dynamic
address), that I would like added into the resolv sequence, as a
secondary resolver, after the IPs my DHCP server gives me. It's amazing
what some people do to run a semi-functional network behind Comcast
cable! Yes, this obviously won't work for most of the names entered with
dns-nameservers, but not adding if not successfully resolved is a
perfectly acceptable fallback in this case. It doesn't take a whole lot
of time, and might be useful for somebody.

Awesome package. It has caused me to delete all of my dhclient-exit-hook
edits.

On Wed, 2003-09-24 at 22:27, Thomas Hood wrote:
 The resolvconf package provides a framework for dynamic updating
 of /etc/resolv.conf and other nameserver lists.  (See the long
 description at packages.debian.org/resolvconf .)
 
 The resolvconf package is now at version 0.44 in unstable.
 
 If you are interested in the package and haven't tested it in a while
 then now is a good time to test it again.  In order to test the
 installation procedure please purge any old version of resolvconf
 first.  Please report any bugs via the BTS.
 
 If no significant bugs are reported and if support is added to
 bind and bind9 (#199255) in time then I'll consider letting
 resolvconf migrate into sarge by closing #209265 with a 1.0
 release.
 
 -- 
 Thomas Hood [EMAIL PROTECTED]




Debian RC System/Init Scripts

2003-09-24 Thread Jerry Haltom
I'm curious if there has ever been any attempt to Policyize scripts
located in init.d. Specifically requiring inclusion of such lines as
DESC=description or NAME=name. I ask because I am doing a little bit
of work on the rc startup script.

I have found a few scripts in the base install that do not include such
lines, but many others that do.

My goal in monkeying with the init system is to clean it up a bit, and
perhaps develop my own parallel service startup method. Albiet, a bit
less than other distros like Gentoo, as no Debian init script declares
dependencies.

They do however declare a few dependencies, in that all S50 scripts
theoritically can launch parallel. I hope to base my efforts on this.

Please don't denounce my efforts as Debian doesn't need parallel
starts! Because I'd like to make it for myself, regardless what Debian
needs.

Anyways, mandated inclusion of lines such as DESC, NAME, etc in the
scripts would help me, and probably make for some much cleaner scripts.
My scripts will need to read out the DESC line in order to spit out some
custom boot messages, which the hard coded Starting X... in the
scripts cannot provide.


-- 
Jerry Haltom [EMAIL PROTECTED]
Feedback Plus, Inc.




User Based Init

2003-08-25 Thread Jerry Haltom
I'm curious how many wtf are you thinking? reactions can be gathered
for the idea of a per-user init.d system?

I see this need a bit, for users who do development with various
services, but admin's not wanting to give them root for one reason or
another. Such as, apache or other web servers. Fetchmail?

(yes I realize fetchmail could be started from cron, which notably also
has a similar per user idea)

/var/lib/user-init/${uid}/init.d
/var/lib/user-init/%{uid}/rc${runlevel}.d

Would be started from /etc/init.d/user-init. Script would run in each
runlevel and run each user's various scripts just like a normal init
sequence, except chuid'd.

So, how insane am I?

This entire idea would consist of essentially one file and a empty
directory. :D

Jerry Haltom
Feedback Plus, Inc.




Re: User Based Init

2003-08-25 Thread Jerry Haltom
Oh. :D

My bad. :D

That definatly counts as a wtf are you thinking!

Thanks!

On Mon, 2003-08-25 at 19:33, Sam Hocevar wrote:
 On Mon, Aug 25, 2003, Jerry Haltom wrote:
 
  [per-user init scripts]
 
  (yes I realize fetchmail could be started from cron, which notably also
  has a similar per user idea)
 
And it also has a similar at startup idea, see crontab(5).




Libc6 functions such as wprintf() (widechar/multibyte/UNICODE support)

2000-03-20 Thread Jerry Lundström
Ive been looking around the manual pages of wprintf and
include files of the latest potato.
Widechar/Multibyte support exist (wchar.h) but almost all
the usefull function is not in the libc distribution of
potato. Functions like wprintf that a vital is no where
to be found and still they have manual pages for the
function.
Has the widechar/multibyte printing support been removed
for som resone or just missed?

Im hopeing for a quick response on this matter because its
very VITAL for my project!

--
Name:Work:Work phone:Mobile:
Jerry Lundström  DaCapo Infix AB  +46 (0)31 - 710 72 00  +46 (0)739 87 60 53
Occupation:Knowledge:
System Developer/Consult   C/C++, COM/DCOM, ASP, SQL, PHP, MySQL, Linux/UNIX



Re: VI reasons (was Re: Base Set: Suggested additions removals.)

1998-06-14 Thread Z-Y \[Jerry\]
greet all,

I am no guru. But let's stop this war! To me, choice of editor depends on
your experience, skill and task on hand. I use vi and my boss at work uses
emacs. We both like our own choice very much and enjoy the way our choice
works for us. But we never try to convert each other, fortunately. 

For the experience of being converted to something else, 
if you are a buddist, try being converted by a Christian or vice versa.
If you don't believe in any form of god, you are free to choose one or
create your own:-)

have  a peaceful sunday.

Jerry

On Sun, 14 Jun 1998, Raul Miller wrote:

 Manoj Srivastava [EMAIL PROTECTED] wrote:
  Most features? *VI*? or you mean XEmacs? Since when has vi
   been an editor with features? ;-)
 
 The biggest advantage of vi over xemacs is that vi is easier on the
 wrists. For example, vi's . command (repeat last command which changed
 the text) is something that doesn't make much sense in the xemacs
 environment (because you can always type ^x( command ^x) then ^x^e...,
 and a command to replace . would be about as many keystrokes).
 
 At one point, I almost had to give up programming because my wrists hurt
 so bad. Switching to vi from emacs (and taking better care of myself)
 mostly solved that.
 
 -- 
 Raul
 
 
 --
 To UNSUBSCRIBE, email to [EMAIL PROTECTED]
 with a subject of unsubscribe. Trouble? Contact [EMAIL PROTECTED]
 

 YU, Zhongbin (Jerry) In Nature I believe:-)
-
M.S. in CIS |   M.S. in Chemistry
[EMAIL PROTECTED]   |   http://userwww.service.emory.edu/~zyu
RA w/ Dr. Ramesh|   Tel: (404)251-9072


--
To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of unsubscribe. Trouble? Contact [EMAIL PROTECTED]