[Bug 283398] Re: Cannot generate UUID

2011-01-26 Thread Mikko Rantalainen
Here's a simple shell script that creates package "php5-pecl-uuid" when called without parameters. This script does following: - create a build directory for this process (deb-build-$$) - get the package source and prefix it with php-pecl - quickly rewrite the debian control and rules files to red

[Bug 283398] Re: Cannot generate UUID

2010-12-21 Thread Mikko Rantalainen
See also bug 692968. -- You received this bug notification because you are a member of Ubuntu Bugs, which is subscribed to Ubuntu. https://bugs.launchpad.net/bugs/283398 Title: Cannot generate UUID -- ubuntu-bugs mailing list ubuntu-bugs@lists.ubuntu.com https://lists.ubuntu.com/mailman/list

[Bug 283398] Re: Cannot generate UUID

2010-12-10 Thread Seth.Griffin
Mikko, I agree. Since there are two packages that can accomplish working with uuid's they should probably be called php5-pecl-uuid php5-ossp-uuid And so on. Naming all php packages as php5-pecl-whatever php5-pear-whatever php5-whoever-whatever is a great idea. -- You received this bug notif

[Bug 283398] Re: Cannot generate UUID

2010-12-10 Thread Mikko Rantalainen
The real issue here is that php5-uuid is NOT the PECL uuid package, but instead OSSP uuid package (it says so in the description -- granted, it doesn't say that it is not the PECL package but I wouldn't expect Firefox package to say that it is not Internet Explorer either, if you know what I mean.)

[Bug 283398] Re: Cannot generate UUID

2009-12-31 Thread Philipp Kempgen
** Also affects: debian Importance: Undecided Status: New -- Cannot generate UUID https://bugs.launchpad.net/bugs/283398 You received this bug notification because you are a member of Ubuntu Bugs, which is subscribed to Ubuntu. -- ubuntu-bugs mailing list ubuntu-bugs@lists.ubuntu.com

[Bug 283398] Re: Cannot generate UUID

2009-10-28 Thread Seth.Griffin
Hi Andrew, After digging around in the deb source I found that the entire interface/library is completely changed and the old interface is no longer available. Here is how you do what you are trying to do using php5-dev. uuid_create(&$uuid); uuid_make($uuid, UUID_MAKE_V4); uuid_export($uuid, UUID

[Bug 283398] Re: Cannot generate UUID

2009-10-28 Thread Seth.Griffin
My mistake, the packages you need are uuid-dev, php5-dev (not php-dev!) and php-pear. -- Cannot generate UUID https://bugs.launchpad.net/bugs/283398 You received this bug notification because you are a member of Ubuntu Bugs, which is subscribed to Ubuntu. -- ubuntu-bugs mailing list ubuntu-bugs

[Bug 283398] Re: Cannot generate UUID

2009-10-28 Thread Seth.Griffin
I can confirm from working code that I have that the normal use looks like this: uuid_create(UUID_TYPE_RANDOM); That would create a random uuid. This is simply broken in ubuntu. I have always had to install the package using pecl sudo pecl install uuid Note that you need uuid-dev, php-dev and