Displaying 8 results from an estimated 8 matches for "__version__".
2015 Jan 30
1
[LLVMdev] LNT install
Hi David,
That's weird, I have setup LNT in multiple different distros and have
never seen this. Looks like no one ever tested on the system you're
running. Can you share a bit more of your environment?
Also, you can check the setup.py to see if it does any stripping of
package names, which could go wrong in the wrong environment.
cheers,
--renato
On 29 January 2015 at 20:13, David
2015 Jan 29
2
[LLVMdev] LNT install
I followed the lnt quickstart <http://llvm.org/docs/lnt/quickstart.html> directions but got this diagnostic when doing the setup:
bash-3.2$ ~/mysandbox/bin/python ~/lnt/setup.py develop
/Users/dcallahan/mysandbox/lib/python2.7/site-packages/setuptools/dist.py:284: UserWarning: The version spec\
ified requires normalization, consider using '0.4.1.dev0' instead of
2019 Jun 03
3
[PATCH libnbd] api: nbd_get_version, nbd_supports_uri and nbd_get_package_name.
...uffer"; "aio_buffer_from_bytearray";
"aio_buffer_to_bytearray" ] @ List.map fst handle_calls);
pr " { NULL, NULL, 0, NULL }\n";
@@ -3607,8 +3650,8 @@ class NBD (object):
(* For nbdsh. *)
pr "\
-package_name = libnbdmod.get_package_name ()
-__version__ = libnbdmod.get_package_version ()
+package_name = NBD().get_package_name()
+__version__ = NBD().get_version()
if __name__ == \"__main__\":
import argparse
diff --git a/lib/handle.c b/lib/handle.c
index a42b8dc..cc311ba 100644
--- a/lib/handle.c
+++ b/lib/handle.c
@@ -214,3 +214,2...
2015 Nov 14
1
Xapian-Haystack is available in Python 3
...nt names for their tools, namely
xapian-config and delve. xapian-config became xapian-config-1.3, delve
became xapian-delve-1.3.
Suggestion: make names independent of oddity of the minor version. I don't
find a compelling reason to force users to code:
XAPIAN_VERSION = [int(x) for x in xapian.__version__.split('.')]
if XAPIAN_VERSION[1] <= 2:
# old versions use "delve".
executable = 'delve'
else:
# new versions use 'xapian-delve'
executable = 'xapian-delve'
# dev versions (odd minor) use a suffix
if XAPIAN_VERSION[1] % 2 != 0:
execu...
2008 Apr 25
0
RELEASE: Flumotion 0.5.2 'Can Tomas'
...ave a tooltip in the ui
* 822 : Encoders and muxers should be pluggable in the wizard
* 823 : HTTP consumer page of the wizard needs to be pluggable
* 824 : Add cortado support
* 827 : [gtk admin] Redo the statusbar
* 835 : recent connections broken again
* 836 : __version__ breaks doc strings
* 837 : fails to build with epydoc 3.0 series
* 838 : Would like to disable doc build
* 840 : Pluggable components should be sorted different in wizard
* 843 : Improve error reporting in the wizard
* 844 : Add support for <wizard> tags for plug...
2005 Sep 19
1
ssh hangs or gives Segmentation fault
...08
#define __LDBL_DENORM_MIN__ 3.64519953188247460253e-4951L
#define __DBL_MIN__ 2.2250738585072014e-308
#define __PTRDIFF_TYPE__ int
#define __LDBL_MIN_10_EXP__ (-4931)
#define __REGISTER_PREFIX__
#define __LDBL_DIG__ 18
#define __NO_INLINE__ 1
#define __i386 1
#define __FLT_MANT_DIG__ 24
#define __VERSION__ "3.3.3 (SuSE Linux)"
config.h:
#define _CONFIG_H
/* #undef SETEUID_BREAKS_SETUID */
/* #undef BROKEN_SETREUID */
/* #undef BROKEN_SETREGID */
/* #undef BROKEN_SETRESUID */
/* #undef BROKEN_SETRESGID */
#define SPT_TYPE SPT_REUSEARGV
/* #undef SPT_PADCHAR */
/* #undef BROKEN_SYS_TERMIO_H...
2010 Feb 11
1
[PATCH] Provides a reference implementation management server.
...a download,
+ should one be required. If an older version of setuptools is installed,
+ this routine will print a message to ``sys.stderr`` and raise SystemExit in
+ an attempt to abort the calling script.
+ """
+ try:
+ import setuptools
+ if setuptools.__version__ == '0.0.1':
+ print >>sys.stderr, (
+ "You have an obsolete version of setuptools installed. Please\n"
+ "remove it from your system entirely before rerunning this script."
+ )
+ sys.exit(2)
+ except Import...
2010 Feb 17
0
[PATCH] Provides the new node lifecycle events.
...a download,
- should one be required. If an older version of setuptools is installed,
- this routine will print a message to ``sys.stderr`` and raise SystemExit in
- an attempt to abort the calling script.
- """
- try:
- import setuptools
- if setuptools.__version__ == '0.0.1':
- print >>sys.stderr, (
- "You have an obsolete version of setuptools installed. Please\n"
- "remove it from your system entirely before rerunning this script."
- )
- sys.exit(2)
- except Import...