From: Uwe Hermann Date: Sat, 17 Jan 2015 17:49:04 +0000 (+0100) Subject: Rename libsigrokxx to the more common libsigrokcxx. X-Git-Tag: libsigrok-0.4.0~684 X-Git-Url: http://sigrok.org/gitweb/?p=libsigrok.git;a=commitdiff_plain;h=52ff4f6a04cbdb966ee538bd447ae206215b528a Rename libsigrokxx to the more common libsigrokcxx. --- diff --git a/Makefile.am b/Makefile.am index 664a58f5..aff06691 100644 --- a/Makefile.am +++ b/Makefile.am @@ -436,19 +436,19 @@ CLEAN_EXTRA = if BINDINGS_CXX -lib_LTLIBRARIES += bindings/cxx/libsigrokxx.la +lib_LTLIBRARIES += bindings/cxx/libsigrokcxx.la -bindings_cxx_libsigrokxx_la_SOURCES = bindings/cxx/classes.cpp +bindings_cxx_libsigrokcxx_la_SOURCES = bindings/cxx/classes.cpp -bindings_cxx_libsigrokxx_la_LIBADD = libsigrok.la $(glibmm_LIBS) +bindings_cxx_libsigrokcxx_la_LIBADD = libsigrok.la $(glibmm_LIBS) -bindings_cxx_libsigrokxx_la_LDFLAGS = $(SR_LIB_LDFLAGS) +bindings_cxx_libsigrokcxx_la_LDFLAGS = $(SR_LIB_LDFLAGS) library_include_HEADERS += \ bindings/cxx/include/libsigrok/libsigrok.hpp \ bindings/cxx/include/libsigrok/enums.hpp -pkgconfig_DATA += bindings/cxx/libsigrokxx.pc +pkgconfig_DATA += bindings/cxx/libsigrokcxx.pc doxy/xml/index.xml: include/libsigrok/libsigrok.h $(AM_V_GEN)cd $(srcdir) && BUILDDIR=$(abs_builddir)/ doxygen Doxyfile 2>/dev/null @@ -497,7 +497,7 @@ python-quietclean: $(AM_V_at)cd $(PDIR) && $(PYTHON) $(abs_srcdir)/$(PDIR)/setup.py --quiet clean --all 3>&1 1>&2 2>&3 \ | grep -v "can.t clean it"; true -$(PDIR)/timestamp: bindings/cxx/libsigrokxx.la $(PDIR)/sigrok/core/classes.i \ +$(PDIR)/timestamp: bindings/cxx/libsigrokcxx.la $(PDIR)/sigrok/core/classes.i \ bindings/swig/classes.i $(PDOC) $(library_include_HEADERS) $(AM_V_at)$(MAKE) python-quietclean $(AM_V_GEN)cd $(PDIR) && $(PYTHON) $(abs_srcdir)/$(PDIR)/setup.py --quiet build 3>&1 1>&2 2>&3 \ @@ -552,10 +552,10 @@ $(JJAR): $(JCXX) $(AM_V_GEN)$(JAVAC) -sourcepath $(JDIR) -d $(JDIR) $(JSRC) $(AM_V_at)jar cf $(JJAR) -C $(JDIR) $(JPKG) -$(JLIB): $(JCXX) bindings/cxx/libsigrokxx.la $(library_include_HEADERS) +$(JLIB): $(JCXX) bindings/cxx/libsigrokcxx.la $(library_include_HEADERS) $(AM_V_GEN)$(CXXCOMPILE) -L.libs -Lbindings/cxx/.libs \ -fno-strict-aliasing -fPIC -shared $(JCLS)/classes_wrap.cxx \ - -lsigrokxx -o $(JLIB) + -lsigrokcxx -o $(JLIB) java-install: $(INSTALL) -d $(libdir)/jni diff --git a/README b/README index d5fb8832..574b91aa 100644 --- a/README +++ b/README @@ -61,7 +61,7 @@ Requirements for the C++ bindings: Requirements for the Python bindings: - - libsigrokxx >= 0.3.0 (the libsigrok C++ bindings, see above) + - libsigrokcxx >= 0.3.0 (the libsigrok C++ bindings, see above) - Python >= 2.7 or Python >= 3 (including development files!) - Python setuptools (for Python 2 or 3) - pygobject >= 3.0.0 (for Python 2 or 3), a.k.a python-gi @@ -73,7 +73,7 @@ Requirements for the Python bindings: Requirements for the Java bindings: - - libsigrokxx >= 0.3.0 (the libsigrok C++ bindings, see above) + - libsigrokcxx >= 0.3.0 (the libsigrok C++ bindings, see above) - SWIG >= 2.0.0 - Java JDK (for JNI includes and the javac/jar binaries) - doxygen (optional, only needed for the Java API docs) diff --git a/bindings/cxx/Doxyfile b/bindings/cxx/Doxyfile index ed7bf5b7..b4fd9a1f 100644 --- a/bindings/cxx/Doxyfile +++ b/bindings/cxx/Doxyfile @@ -32,7 +32,7 @@ DOXYFILE_ENCODING = UTF-8 # title of most generated pages and in a few other places. # The default value is: My Project. -PROJECT_NAME = "sigrok++" +PROJECT_NAME = "libsigrokcxx" # The PROJECT_NUMBER tag can be used to enter a project or revision number. This # could be handy for archiving the generated documentation or if some version diff --git a/bindings/cxx/include/libsigrok/libsigrok.hpp b/bindings/cxx/include/libsigrok/libsigrok.hpp index d287504d..5b53da94 100644 --- a/bindings/cxx/include/libsigrok/libsigrok.hpp +++ b/bindings/cxx/include/libsigrok/libsigrok.hpp @@ -24,8 +24,8 @@ Introduction ------------ -The sigrok++ API provides an object-oriented C++ interface to the functionality -in libsigrok, including automatic memory and resource management. +The libsigrokcxx API provides an object-oriented C++ interface to the +functionality in libsigrok, including automatic memory and resource management. It is built on top of the public libsigrok C API, and is designed to be used as a standalone alternative API. Programs should not mix usage of the C and C++ @@ -45,10 +45,10 @@ use. The C++ interface code also keeps track of internal dependencies between libsigrok resources, and ensures that objects are not prematurely deleted when their resources are in use by other objects. -This means that management of sigrok++ objects and their underlying libsigrok -resources can be treated as fully automatic. As long as all shared pointers to -objects are deleted or reassigned when no longer in use, all underlying -resources will be released at the right time. +This means that management of libsigrokcxx objects and their underlying +libsigrok resources can be treated as fully automatic. As long as all shared +pointers to objects are deleted or reassigned when no longer in use, all +underlying resources will be released at the right time. Getting started --------------- diff --git a/bindings/cxx/libsigrokcxx.pc.in b/bindings/cxx/libsigrokcxx.pc.in new file mode 100644 index 00000000..432de770 --- /dev/null +++ b/bindings/cxx/libsigrokcxx.pc.in @@ -0,0 +1,15 @@ +prefix=@prefix@ +exec_prefix=@exec_prefix@ +libdir=@libdir@ +includedir=@includedir@ + +Name: libsigrokcxx +Description: C++ bindings for libsigrok +URL: http://www.sigrok.org +Requires: libsigrok glibmm-2.4 +Requires.private: @SR_PKGLIBS@ +Version: @VERSION@ +Libs: -L${libdir} -lsigrokcxx +Libs.private: -lm +Cflags: -I${includedir} + diff --git a/bindings/cxx/libsigrokxx.pc.in b/bindings/cxx/libsigrokxx.pc.in deleted file mode 100644 index ab4c3782..00000000 --- a/bindings/cxx/libsigrokxx.pc.in +++ /dev/null @@ -1,15 +0,0 @@ -prefix=@prefix@ -exec_prefix=@exec_prefix@ -libdir=@libdir@ -includedir=@includedir@ - -Name: libsigrokxx -Description: C++ bindings for libsigrok -URL: http://www.sigrok.org -Requires: libsigrok glibmm-2.4 -Requires.private: @SR_PKGLIBS@ -Version: @VERSION@ -Libs: -L${libdir} -lsigrokxx -Libs.private: -lm -Cflags: -I${includedir} - diff --git a/bindings/java/org/sigrok/core/classes/classes.i b/bindings/java/org/sigrok/core/classes/classes.i index 867e8fca..9979a618 100644 --- a/bindings/java/org/sigrok/core/classes/classes.i +++ b/bindings/java/org/sigrok/core/classes/classes.i @@ -16,7 +16,7 @@ * ------------ * * The sigrok-java API provides an object-oriented Java interface to the - * functionality in libsigrok. It is built on top of the sigrok++ C++ API. + * functionality in libsigrok. It is built on top of the libsigrokcxx C++ API. * * Getting started * --------------- diff --git a/bindings/python/setup.py b/bindings/python/setup.py index 9b5e9984..0002c1d4 100644 --- a/bindings/python/setup.py +++ b/bindings/python/setup.py @@ -39,7 +39,7 @@ includes += ['../..', '../../include/libsigrok', '../cxx/include/libsigrok'] includes += [i[2:] for i in sr_includes] includes += [np.get_include(), ] libdirs = ['../../.libs', '../cxx/.libs'] + [l[2:] for l in sr_lib_dirs] -libs = [l[2:] for l in sr_libs] + ['sigrokxx'] +libs = [l[2:] for l in sr_libs] + ['sigrokcxx'] def vpath(file): vfile = os.path.join(srcdir, file) diff --git a/bindings/python/sigrok/core/classes.i b/bindings/python/sigrok/core/classes.i index 7d4304fc..277a021a 100644 --- a/bindings/python/sigrok/core/classes.i +++ b/bindings/python/sigrok/core/classes.i @@ -24,7 +24,7 @@ Introduction ------------ The pysigrok API provides an object-oriented Python interface to the -functionality in libsigrok. It is built on top of the sigrok++ C++ API. +functionality in libsigrok. It is built on top of the libsigrokcxx C++ API. Getting started --------------- diff --git a/configure.ac b/configure.ac index 396e3ec2..5f9cf652 100644 --- a/configure.ac +++ b/configure.ac @@ -537,7 +537,7 @@ AC_SUBST(SR_PACKAGE_VERSION_MICRO) AC_SUBST(SR_PACKAGE_VERSION) AC_CONFIG_FILES([Makefile include/libsigrok/version.h libsigrok.pc - bindings/cxx/libsigrokxx.pc]) + bindings/cxx/libsigrokcxx.pc]) AC_OUTPUT