[Bug 152188] Re: [needs-packaging] xca

2010-08-17 Thread Mark Foster
** Changed in: ubuntu
   Status: In Progress = Invalid

-- 
[needs-packaging] xca
https://bugs.launchpad.net/bugs/152188
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
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 152188] Re: [needs-packaging] xca

2010-01-29 Thread Mark Foster
https://lists.ubuntu.com/archives/lucid-changes/2010-January/002491.html

I think this can be closed now.

-- 
[needs-packaging] xca
https://bugs.launchpad.net/bugs/152188
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
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 152188] Re: [needs-packaging] xca

2010-01-17 Thread Mark Foster
This is now included in upstream debian. Not sure how to get it included
in ubuntu (Lucid) or is that automatic?

-- 
[needs-packaging] xca
https://bugs.launchpad.net/bugs/152188
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
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 152188] Re: [needs-packaging] xca

2009-03-18 Thread Travis H.
Hello,

I was starting on making the same package.  I contacted the author about
the hardy x86_64 bug - I run that - and he said that the code was kind
of old with respect to the latest OpenSSL version.  Here is a patch that
works (also attached):

diff --git a/lib/x509rev.cpp b/lib/x509rev.cpp
index 3af4b44..aa60dee 100644
--- a/lib/x509rev.cpp
+++ b/lib/x509rev.cpp
@@ -7,16 +7,23 @@

 #include x509rev.h

-#if OPENSSL_VERSION_NUMBER = 0x00908000L
-#define X509_REVOKED_dup(x5r) \
-   ASN1_dup_of (X509_REVOKED, i2d_X509_REVOKED, d2i_X509_REVOKED, x5r)

-#else
-#define X509_REVOKED_dup(x5r) (X509_REVOKED *)ASN1_dup( \
-   (int (*)(...))i2d_X509_REVOKED, \
-   (char *(*)(...))d2i_X509_REVOKED, \
-   (char *)x5r)
-#endif
+static X509_REVOKED *X509_REVOKED_dup(const X509_REVOKED *n)
+{
+int len;
+X509_REVOKED *ret;
+   unsigned char *buf, *p;
+   const unsigned char *cp;
+
+len = i2d_X509_REVOKED((X509_REVOKED *)n, NULL);
+   buf = (unsigned char *)OPENSSL_malloc(len);
+p = buf;
+i2d_X509_REVOKED((X509_REVOKED *)n, p);
+cp = buf;
+ret = d2i_X509_REVOKED(NULL, cp, len);
+OPENSSL_free(buf);
+return(ret);
+}

 x509rev::x509rev()
 {
@@ -25,7 +32,7 @@ x509rev::x509rev()

 x509rev::x509rev(const X509_REVOKED *n)
 {
-   rev = X509_REVOKED_dup((X509_REVOKED *)n);
+   rev = X509_REVOKED_dup(n);
 }

 x509rev::x509rev(const x509rev n)
@@ -43,7 +50,7 @@ x509rev x509rev::set(const X509_REVOKED *n)
 {
if (rev != NULL)
X509_REVOKED_free(rev);
-   rev = X509_REVOKED_dup((X509_REVOKED *)n);
+   rev = X509_REVOKED_dup(n);
return *this;
 }


** Attachment added: x509rev.diff
   http://launchpadlibrarian.net/24079338/x509rev.diff

-- 
[needs-packaging] xca
https://bugs.launchpad.net/bugs/152188
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
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 152188] Re: [needs-packaging] xca

2008-10-23 Thread Mark Foster
What is taking so long on the REVU process for this package.

-- 
[needs-packaging] xca
https://bugs.launchpad.net/bugs/152188
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
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 152188] Re: [needs-packaging] xca

2008-09-10 Thread Mark Foster
I'm trying to pick this up where D. Mueller left off. xca-0.6.4-1 has
been uploaded to REVU.

http://revu.ubuntuwire.com/details.py?package=xca


** Changed in: ubuntu
 Assignee: Daniel Mueller (ubuntu-danm) = Mark Foster (fostermarkd)

** Changed in: ubuntu
   Status: Invalid = In Progress

-- 
[needs-packaging] xca
https://bugs.launchpad.net/bugs/152188
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
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 152188] Re: [needs-packaging] xca

2008-05-15 Thread Daniel Mueller
Got no further answers from REVU (it has been deleted actually). It
seems to be too difficult to create an Ubuntu package. However, I will
update the package on my personal website:
http://www.danm.de/files/ubuntu/packages/xca/


** Changed in: ubuntu
   Status: In Progress = Invalid

-- 
[needs-packaging] xca
https://bugs.launchpad.net/bugs/152188
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
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 152188] Re: [needs-packaging] xca

2007-12-20 Thread Daniel Mueller
I'm working on a corrected version (got a lot of comments from Emmet
Hikory[1]). Unfortunately the build works well on Gutsy/x86_64.

$ uname -a
Linux torax 2.6.22-14-generic #1 SMP Tue Dec 18 05:28:27 UTC 2007 x86_64 
GNU/Linux

I have to install Hardy first to find out what's wrong.

[1] http://revu.tauware.de/details.py?package=xca

-- 
[needs-packaging] xca
https://bugs.launchpad.net/bugs/152188
You received this bug notification because you are a member of Ubuntu
Bugs, which is the bug contact for Ubuntu.

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 152188] Re: [needs-packaging] xca

2007-12-19 Thread Daniel Holbach
SVG is fine. It's just that it's in the .diff.gz - I personally would
have used a patch for it -
http://wiki.ubuntu.com/PackagingGuide/PatchSystems

Fails to build on Hardy/AMD64:

cc -I. -I.. -I/tmp/buildd/xca-0.6.4/ui -I/usr/include/qt4 -I/usr/include/qt4/Qt 
-Wall -g -O2  -c x509rev.cpp -o x509rev.o
x509rev.cpp: In constructor 'x509rev::x509rev(const X509_REVOKED*)':
x509rev.cpp:28: error: invalid conversion from 'void*' to 'char*'
x509rev.cpp:28: error:   initializing argument 3 of 'void* ASN1_dup(int 
(*)(void*, unsigned char**), void* (*)(void**, const unsigned char**, long 
int), char*)'
x509rev.cpp: In member function 'x509rev x509rev::set(const X509_REVOKED*)':
x509rev.cpp:46: error: invalid conversion from 'void*' to 'char*'
x509rev.cpp:46: error:   initializing argument 3 of 'void* ASN1_dup(int 
(*)(void*, unsigned char**), void* (*)(void**, const unsigned char**, long 
int), char*)'
x509rev.cpp: In member function 'X509_REVOKED* x509rev::get() const':
x509rev.cpp:90: error: invalid conversion from 'void*' to 'char*'
x509rev.cpp:90: error:   initializing argument 3 of 'void* ASN1_dup(int 
(*)(void*, unsigned char**), void* (*)(void**, const unsigned char**, long 
int), char*)'
make[2]: *** [x509rev.o] Error 1
make[2]: Leaving directory `/tmp/buildd/xca-0.6.4/lib'


The problem is that void* on amd64 is 64 bit long, char* is not.

-- 
[needs-packaging] xca
https://bugs.launchpad.net/bugs/152188
You received this bug notification because you are a member of Ubuntu
Bugs, which is the bug contact for Ubuntu.

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 152188] Re: [needs-packaging] xca

2007-12-02 Thread Daniel Mueller
A new version has been uploaded. Why shall I use an xpm image for the
debian/menu icon? I thought SVG is 'state-of-the-art' - many programs
using it right now.

What means 4) FTBFS on hardy/amd64?

-- 
[needs-packaging] xca
https://bugs.launchpad.net/bugs/152188
You received this bug notification because you are a member of Ubuntu
Bugs, which is the bug contact for Ubuntu.

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 152188] Re: [needs-packaging] xca

2007-11-30 Thread Daniel Holbach
New URL: http://revu.tauware.de/details.py?package=xca

-- 
[needs-packaging] xca
https://bugs.launchpad.net/bugs/152188
You received this bug notification because you are a member of Ubuntu
Bugs, which is the bug contact for Ubuntu.

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 152188] Re: [needs-packaging] xca

2007-11-23 Thread Daniel Holbach
 - You change img/xca.svg in the .diff.gz, do you think you can use a patch 
system for that? http://wiki.ubuntu.com/PackagingGuide/PatchSystems
 - Can you add (LP: #152188) to the changelog entry? Can you change 'gutsy' to 
'hardy'?
 - Can you make use of /usr/share/debhelper/dh_make/licenses/bsd (dh-make 
package) in debian/copyright?
 - Copyright is Copyright (C) 2001 - 2007 Christian Hohnstaedt rather.
 - Can you run  dh_icons  in debian/rules?
 - Missing Build-Depends: linuxdoc-tools

-- 
[needs-packaging] xca
https://bugs.launchpad.net/bugs/152188
You received this bug notification because you are a member of Ubuntu
Bugs, which is the bug contact for Ubuntu.

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 152188] Re: [needs-packaging] xca

2007-10-18 Thread Daniel Mueller
Sent package to revu. Waiting for review.

-- 
[needs-packaging] xca
https://bugs.launchpad.net/bugs/152188
You received this bug notification because you are a member of Ubuntu
Bugs, which is the bug contact for Ubuntu.

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 152188] Re: [needs-packaging] xca

2007-10-16 Thread Vincent Legout
Maybe you can upload your package in revu, see
https://wiki.ubuntu.com/MOTU/Packages/REVU.

** Changed in: ubuntu
   Importance: Undecided = Wishlist
 Assignee: (unassigned) = Daniel Mueller (ubuntu-danm)
   Status: New = In Progress

-- 
[needs-packaging] xca
https://bugs.launchpad.net/bugs/152188
You received this bug notification because you are a member of Ubuntu
Bugs, which is the bug contact for Ubuntu.

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs