diff options
author | Matteo Bernardini <ponce@slackbuilds.org> | 2022-02-16 20:10:33 +0100 |
---|---|---|
committer | Willy Sudiarto Raharjo <willysr@slackbuilds.org> | 2022-02-17 12:59:52 +0700 |
commit | b69cc3de96a9da07171ff76f8265b7eb7a75ed82 (patch) | |
tree | 8a9a1eb5ed13e9d9c016ed6ca435767631097632 /development | |
parent | bcaf34e7407dac0aa2a62f6e2134bacc0333e8ea (diff) |
development/odb: Removed (abandoned).
Signed-off-by: Matteo Bernardini <ponce@slackbuilds.org>
Signed-off-by: Willy Sudiarto Raharjo <willysr@slackbuilds.org>
Diffstat (limited to 'development')
-rw-r--r-- | development/odb/README | 18 | ||||
-rw-r--r-- | development/odb/odb.SlackBuild | 113 | ||||
-rw-r--r-- | development/odb/odb.info | 10 | ||||
-rw-r--r-- | development/odb/odb_gcc6.patch | 355 | ||||
-rw-r--r-- | development/odb/slack-desc | 19 |
5 files changed, 0 insertions, 515 deletions
diff --git a/development/odb/README b/development/odb/README deleted file mode 100644 index ab119b383f973..0000000000000 --- a/development/odb/README +++ /dev/null @@ -1,18 +0,0 @@ -ODB is an open-source, cross-platform, and cross-database object- -relational mapping (ORM) system for C++. It allows you to persist -C++ objects to a relational database without having to deal with -tables, columns, or SQL and without manually writing any mapping -code. - -ODB supports MySQL, SQLite, PostgreSQL, Oracle, and -Microsoft SQL Server relational databases as well as C++98/03 and -C++11 language standards. It also comes with optional profiles -for Boost and Qt which allow you to seamlessly use value types, -containers, and smart pointers from these libraries in your -persistent C++ classes. - -The ODB system consists of several packages. The essential packages -are the ODB compiler (odb), the common runtime library (libodb), -and the database-specific runtime library (libodb-<database>). -For example, if you are planning to use MySQL, then the set of -packages that you will need would be: odb, libodb, and libodb-mysql. diff --git a/development/odb/odb.SlackBuild b/development/odb/odb.SlackBuild deleted file mode 100644 index 658074db248fe..0000000000000 --- a/development/odb/odb.SlackBuild +++ /dev/null @@ -1,113 +0,0 @@ -#!/bin/bash - -# Slackware build script for Code Synthesis odb - -# Copyright Andre Barboza 2016, Belo Horizonte - Brazil -# All rights reserved. -# -# Redistribution and use of this script, with or without modification, is -# permitted provided that the following conditions are met: -# -# 1. Redistributions of this script must retain the above copyright -# notice, this list of conditions and the following disclaimer. -# -# THIS SOFTWARE IS PROVIDED BY THE AUTHOR "AS IS" AND ANY EXPRESS OR IMPLIED -# WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF -# MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO -# EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, -# SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, -# PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; -# OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, -# WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR -# OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF -# ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. - -cd $(dirname $0) ; CWD=$(pwd) - -PRGNAM=odb -VERSION=${VERSION:-2.4.0} -BUILD=${BUILD:-1} -TAG=${TAG:-_SBo} -PKGTYPE=${PKGTYPE:-tgz} - -if [ -z "$ARCH" ]; then - case "$( uname -m )" in - i?86) ARCH=i586 ;; - arm*) ARCH=arm ;; - *) ARCH=$( uname -m ) ;; - esac -fi - -# If the variable PRINT_PACKAGE_NAME is set, then this script will report what -# the name of the created package would be, and then exit. This information -# could be useful to other scripts. -if [ ! -z "${PRINT_PACKAGE_NAME}" ]; then - echo "$PRGNAM-$VERSION-$ARCH-$BUILD$TAG.$PKGTYPE" - exit 0 -fi - -TMP=${TMP:-/tmp/SBo} -PKG=$TMP/package-$PRGNAM -OUTPUT=${OUTPUT:-/tmp} - -if [ "$ARCH" = "i586" ]; then - SLKCFLAGS="-O2 -march=i586 -mtune=i686" - LIBDIRSUFFIX="" -elif [ "$ARCH" = "i686" ]; then - SLKCFLAGS="-O2 -march=i686 -mtune=i686" - LIBDIRSUFFIX="" -elif [ "$ARCH" = "x86_64" ]; then - SLKCFLAGS="-O2 -fPIC" - LIBDIRSUFFIX="64" -else - SLKCFLAGS="-O2" - LIBDIRSUFFIX="" -fi - -set -e - -rm -rf $PKG -mkdir -p $TMP $PKG $OUTPUT -cd $TMP -rm -rf $PRGNAM-$VERSION -tar xvf $CWD/$PRGNAM-$VERSION.tar.bz2 -cd $PRGNAM-$VERSION -chown -R root:root . -find -L . \ - \( -perm 777 -o -perm 775 -o -perm 750 -o -perm 711 -o -perm 555 \ - -o -perm 511 \) -exec chmod 755 {} \; -o \ - \( -perm 666 -o -perm 664 -o -perm 640 -o -perm 600 -o -perm 444 \ - -o -perm 440 -o -perm 400 \) -exec chmod 644 {} \; - -# Thanks archlinux! -patch -p1 < $CWD/odb_gcc6.patch - -CFLAGS="$SLKCFLAGS" \ -CXXFLAGS="$SLKCFLAGS" \ -./configure \ - --prefix=/usr \ - --libdir=/usr/lib${LIBDIRSUFFIX} \ - --sysconfdir=/etc \ - --localstatedir=/var \ - --mandir=/usr/man \ - --docdir=/usr/doc/$PRGNAM-$VERSION \ - --build=$ARCH-slackware-linux - -make -make install DESTDIR=$PKG - -find $PKG -print0 | xargs -0 file | grep -e "executable" -e "shared object" | grep ELF \ - | cut -f 1 -d : | xargs strip --strip-unneeded 2> /dev/null || true - -find $PKG/usr/man -type f -exec gzip -9 {} \; -for i in $( find $PKG/usr/man -type l ) ; do ln -s $( readlink $i ).gz $i.gz ; rm $i ; done - - -mkdir -p $PKG/usr/doc/$PRGNAM-$VERSION -cat $CWD/$PRGNAM.SlackBuild > $PKG/usr/doc/$PRGNAM-$VERSION/$PRGNAM.SlackBuild - -mkdir -p $PKG/install -cat $CWD/slack-desc > $PKG/install/slack-desc - -cd $PKG -/sbin/makepkg -l y -c n $OUTPUT/$PRGNAM-$VERSION-$ARCH-$BUILD$TAG.$PKGTYPE diff --git a/development/odb/odb.info b/development/odb/odb.info deleted file mode 100644 index 905c938ffe9b7..0000000000000 --- a/development/odb/odb.info +++ /dev/null @@ -1,10 +0,0 @@ -PRGNAM="odb" -VERSION="2.4.0" -HOMEPAGE="https://www.codesynthesis.com/products/odb/" -DOWNLOAD="https://www.codesynthesis.com/download/odb/2.4/odb-2.4.0.tar.bz2" -MD5SUM="0146d0223f874a9434673682a5669638" -DOWNLOAD_x86_64="" -MD5SUM_x86_64="" -REQUIRES="libcutl" -MAINTAINER="Andre Barboza" -EMAIL="bmg.andre@gmail.com" diff --git a/development/odb/odb_gcc6.patch b/development/odb/odb_gcc6.patch deleted file mode 100644 index 6f7c9005c4937..0000000000000 --- a/development/odb/odb_gcc6.patch +++ /dev/null @@ -1,355 +0,0 @@ -From 511dcf67322ad87fb32f97d1cf7725c129e83898 Mon Sep 17 00:00:00 2001 -From: Boris Kolpackov <boris@codesynthesis.com> -Date: Fri, 5 Feb 2016 16:01:42 +0200 -Subject: [PATCH] Initial work to make ODB compatible with GCC 6 - ---- - odb/cxx-lexer.cxx | 4 ++++ - odb/gcc-fwd.hxx | 23 ++++++++++++++++++++++- - odb/gcc.hxx | 10 ++++++++++ - odb/include.cxx | 31 +++++++++++++++++++++---------- - odb/parser.cxx | 8 ++++---- - odb/plugin.cxx | 29 +++++++++++++++++++++++++++-- - odb/semantics/elements.cxx | 4 ++-- - 7 files changed, 90 insertions(+), 19 deletions(-) - -diff --git a/odb/cxx-lexer.cxx b/odb/cxx-lexer.cxx -index 7029c7e..64df296 100644 ---- a/odb/cxx-lexer.cxx -+++ b/odb/cxx-lexer.cxx -@@ -135,8 +135,12 @@ cpp_error_callback ( - #if BUILDING_GCC_MAJOR > 4 || BUILDING_GCC_MAJOR == 4 && BUILDING_GCC_MINOR > 5 - int /*reason*/, // Added in GCC 4.6.0. - #endif -+#if BUILDING_GCC_MAJOR <= 5 - location_t, - unsigned int, -+#else -+ rich_location*, -+#endif - char const* msg, - va_list *ap) - { -diff --git a/odb/gcc-fwd.hxx b/odb/gcc-fwd.hxx -index a120f05..618b106 100644 ---- a/odb/gcc-fwd.hxx -+++ b/odb/gcc-fwd.hxx -@@ -7,6 +7,24 @@ - - #include <bversion.h> - -+#if BUILDING_GCC_MAJOR >= 6 -+ -+// If we include <system.h> here, it pulls in all kinds of GCC trouble that -+// "poisons" standard C/C++ declarations; see safe-ctype.h. So instead we -+// are going to "exclude" safe-ctype.h. To compensate, however, we will -+// include it first thing in gcc.hxx. -+// -+# include <config.h> -+# define SAFE_CTYPE_H -+# include <system.h> -+# undef SAFE_CTYPE_H -+# include <coretypes.h> -+ -+typedef unsigned int source_location; // <line-map.h> -+typedef source_location location_t; // <input.h> -+ -+#else // GCC < 6 -+ - #if BUILDING_GCC_MAJOR > 4 || BUILDING_GCC_MAJOR == 4 && BUILDING_GCC_MINOR > 8 - # include <limits.h> // CHAR_BIT - # include <config.h> -@@ -33,6 +51,9 @@ extern "C" - - typedef unsigned int source_location; // <line-map.h> - typedef source_location location_t; // <input.h> --} -+ -+} // extern "C" -+ -+#endif - - #endif // ODB_GCC_FWD_HXX -diff --git a/odb/gcc.hxx b/odb/gcc.hxx -index c953047..858d685 100644 ---- a/odb/gcc.hxx -+++ b/odb/gcc.hxx -@@ -7,6 +7,10 @@ - - #include <odb/gcc-fwd.hxx> - -+#if BUILDING_GCC_MAJOR >= 6 -+# include <safe-ctype.h> // See gcc-fwd.hxx. -+#endif -+ - // GCC header includes to get the plugin and parse tree declarations. - // The order is important and doesn't follow any kind of logic. - // -@@ -145,4 +149,10 @@ gcc_tree_code_name (gcc_tree_code_type tc) {return tree_code_name[tc];} - #define DECL_CHAIN(x) TREE_CHAIN(x) - #endif - -+// In GCC 6, ANON_AGGRNAME_P became anon_aggrname_p(). -+// -+#if BUILDING_GCC_MAJOR < 6 -+# define anon_aggrname_p(X) ANON_AGGRNAME_P(X) -+#endif -+ - #endif // ODB_GCC_HXX -diff --git a/odb/include.cxx b/odb/include.cxx -index 9c03f99..32d50a6 100644 ---- a/odb/include.cxx -+++ b/odb/include.cxx -@@ -30,9 +30,18 @@ namespace - path path_; - }; - -+#if BUILDING_GCC_MAJOR >= 6 -+ typedef line_map_ordinary line_map_type; -+#else -+ typedef line_map line_map_type; -+# ifndef linemap_check_ordinary -+# define linemap_check_ordinary(X) (X) -+# endif -+#endif -+ - struct includes - { -- typedef std::map<line_map const*, include_directive> map_type; -+ typedef std::map<line_map_type const*, include_directive> map_type; - bool trailing; // Included at the beginning or at the end of the main file. - map_type map; - }; -@@ -146,7 +155,9 @@ namespace - // - if (l > BUILTINS_LOCATION) - { -- line_map const* lm (linemap_lookup (line_table, l)); -+ line_map_type const* lm ( -+ linemap_check_ordinary ( -+ linemap_lookup (line_table, l))); - - if (lm != 0 && !MAIN_FILE_P (lm)) - { -@@ -539,20 +550,20 @@ namespace - // - #if BUILDING_GCC_MAJOR == 4 && BUILDING_GCC_MINOR <= 6 - size_t used (line_table->used); -- line_map const* maps (line_table->maps); -+ line_map_type const* maps (line_table->maps); - #else - size_t used (line_table->info_ordinary.used); -- line_map const* maps (line_table->info_ordinary.maps); -+ line_map_type const* maps (line_table->info_ordinary.maps); - #endif - - for (size_t i (0); i < used; ++i) - { -- line_map const* m (maps + i); -+ line_map_type const* m (maps + i); - - if (MAIN_FILE_P (m) || m->reason != LC_ENTER) - continue; - -- line_map const* ifm (INCLUDED_FROM (line_table, m)); -+ line_map_type const* ifm (INCLUDED_FROM (line_table, m)); - - #if BUILDING_GCC_MAJOR == 4 && BUILDING_GCC_MINOR <= 6 - path f (m->to_file); -@@ -582,7 +593,7 @@ namespace - for (includes::iterator j (i->second.begin ()); - j != i->second.end (); ++j) - { -- line_map const* lm (j->first); -+ line_map_type const* lm (j->first); - cerr << '\t' << lm->to_file << ":" << LAST_SOURCE_LINE (lm) << endl; - } - */ -@@ -591,13 +602,13 @@ namespace - // it is preferred over all others. Use the first one if there are - // several. - // -- line_map const* main_lm (0); -+ line_map_type const* main_lm (0); - include_directive* main_inc (0); - - for (includes::map_type::iterator j (i->second.map.begin ()); - j != i->second.map.end (); ++j) - { -- line_map const* lm (j->first); -+ line_map_type const* lm (j->first); - - if (MAIN_FILE_P (lm)) - { -@@ -638,7 +649,7 @@ namespace - for (includes::map_type::iterator j (i->second.map.begin ()); - j != i->second.map.end (); ++j) - { -- line_map const* lm (j->first); -+ line_map_type const* lm (j->first); - - #if BUILDING_GCC_MAJOR == 4 && BUILDING_GCC_MINOR <= 6 - string f (lm->to_file); -diff --git a/odb/parser.cxx b/odb/parser.cxx -index 275da33..842611f 100644 ---- a/odb/parser.cxx -+++ b/odb/parser.cxx -@@ -1070,14 +1070,14 @@ emit_type_decl (tree decl) - // says that in typedef struct {} S; S becomes struct's - // name. - // -- if (ANON_AGGRNAME_P (decl_name)) -+ if (anon_aggrname_p (decl_name)) - { - tree d (TYPE_NAME (t)); - - if (d != NULL_TREE && - !DECL_ARTIFICIAL (d) && - DECL_NAME (d) != NULL_TREE && -- !ANON_AGGRNAME_P (DECL_NAME (d))) -+ !anon_aggrname_p (DECL_NAME (d))) - { - decl = d; - decl_name = DECL_NAME (decl); -@@ -1694,7 +1694,7 @@ create_type (tree t, - ts << "start anon/stub " << gcc_tree_code_name(tc) << " at " - << file << ":" << line << endl; - -- if (d == NULL_TREE || ANON_AGGRNAME_P (DECL_NAME (d))) -+ if (d == NULL_TREE || anon_aggrname_p (DECL_NAME (d))) - { - if (tc == RECORD_TYPE) - r = &emit_class<class_> (t, file, line, clmn); -@@ -1791,7 +1791,7 @@ create_type (tree t, - ts << "start anon/stub " << gcc_tree_code_name(tc) << " at " - << file << ":" << line << endl; - -- if (d == NULL_TREE || ANON_AGGRNAME_P (DECL_NAME (d))) -+ if (d == NULL_TREE || anon_aggrname_p (DECL_NAME (d))) - { - r = &emit_enum (t, access, file, line, clmn); - } -diff --git a/odb/plugin.cxx b/odb/plugin.cxx -index fbbfe46..bc98f3e 100644 ---- a/odb/plugin.cxx -+++ b/odb/plugin.cxx -@@ -45,14 +45,28 @@ path file_; // File being compiled. - paths inputs_; // List of input files in at-once mode or just file_. - - bool (*cpp_error_prev) ( -- cpp_reader*, int, int, location_t, unsigned int, const char*, va_list*); -+ cpp_reader*, -+ int, -+ int, -+#if BUILDING_GCC_MAJOR >= 6 -+ rich_location*, -+#else -+ location_t, -+ unsigned int, -+#endif -+ const char*, -+ va_list*); - - static bool - cpp_error_filter (cpp_reader* r, - int level, - int reason, -+#if BUILDING_GCC_MAJOR >= 6 -+ rich_location* l, -+#else - location_t l, - unsigned int column_override, -+#endif - const char* msg, - va_list* ap) - { -@@ -66,7 +80,18 @@ cpp_error_filter (cpp_reader* r, - if (strstr (msg, "#pragma once") != 0) - return true; - -- return cpp_error_prev (r, level, reason, l, column_override, msg, ap); -+ return cpp_error_prev ( -+ r, -+ level, -+ reason, -+#if BUILDING_GCC_MAJOR >= 6 -+ l, -+#else -+ l, -+ column_override, -+#endif -+ msg, -+ ap); - } - - // A prefix of the _cpp_file struct. This struct is not part of the -diff --git a/odb/semantics/elements.cxx b/odb/semantics/elements.cxx -index 43fb379..ae9e906 100644 ---- a/odb/semantics/elements.cxx -+++ b/odb/semantics/elements.cxx -@@ -76,7 +76,7 @@ namespace semantics - if (tree decl = TYPE_NAME (n)) - name = DECL_NAME (decl); - -- return name != 0 && ANON_AGGRNAME_P (name); -+ return name != 0 && anon_aggrname_p (name); - } - - return true; -@@ -125,7 +125,7 @@ namespace semantics - if (tree decl = TYPE_NAME (type)) - { - name = DECL_NAME (decl); -- if (name != 0 && ANON_AGGRNAME_P (name)) -+ if (name != 0 && anon_aggrname_p (name)) - return true; - - tree s (CP_DECL_CONTEXT (decl)); --- -1.7.10.4 - -m 61d13eb53ade9f30a64892a901401bda5e42c335 Mon Sep 17 00:00:00 2001 -From: Boris Kolpackov <boris@codesynthesis.com> -Date: Mon, 8 Feb 2016 18:39:21 +0200 -Subject: [PATCH] Make compilable with GCC 6 in C++14 mode - ---- - odb/gcc.hxx | 9 ++++++--- - odb/parser.cxx | 2 ++ - 2 files changed, 8 insertions(+), 3 deletions(-) - -diff --git a/odb/gcc.hxx b/odb/gcc.hxx -index 858d685..a22357d 100644 ---- a/odb/gcc.hxx -+++ b/odb/gcc.hxx -@@ -7,9 +7,12 @@ - - #include <odb/gcc-fwd.hxx> - --#if BUILDING_GCC_MAJOR >= 6 --# include <safe-ctype.h> // See gcc-fwd.hxx. --#endif -+// Actually, let's keep it out. With it included we can compile in C++98 -+// but not in C++14 (GCC 6 default). -+// -+// #if BUILDING_GCC_MAJOR >= 6 -+// # include <safe-ctype.h> // See gcc-fwd.hxx. -+// #endif - - // GCC header includes to get the plugin and parse tree declarations. - // The order is important and doesn't follow any kind of logic. -diff --git a/odb/parser.cxx b/odb/parser.cxx -index 842611f..6dfff6f 100644 ---- a/odb/parser.cxx -+++ b/odb/parser.cxx -@@ -1857,6 +1857,8 @@ create_type (tree t, - // the array type. In other words, we view it as "constant array" - // rather than "array of constant elements". - // -+ using semantics::array; // vs std::array. -+ - tree bt (TREE_TYPE (t)); - tree bt_mv (TYPE_MAIN_VARIANT (bt)); - type& bt_node (emit_type (bt_mv, access::public_, file, line, clmn)); --- -1.7.10.4 diff --git a/development/odb/slack-desc b/development/odb/slack-desc deleted file mode 100644 index 587caa7d52635..0000000000000 --- a/development/odb/slack-desc +++ /dev/null @@ -1,19 +0,0 @@ -# HOW TO EDIT THIS FILE: -# The "handy ruler" below makes it easier to edit a package description. -# Line up the first '|' above the ':' following the base package name, and -# the '|' on the right side marks the last column you can put a character in. -# You must make exactly 11 lines for the formatting to be correct. It's also -# customary to leave one space after the ':' except on otherwise blank lines. - - |-----handy-ruler------------------------------------------------------| -odb: odb (ODB: C++ Object-Relational Mapping - ORM) -odb: -odb: ODB is an open-source, cross-platform, and cross-database object- -odb: relational mapping (ORM) system for C++. It allows you to persist -odb: C++ objects to a relational database without having to deal with -odb: tables, columns, or SQL and without manually writing any mapping -odb: code. -odb: -odb: -odb: https://www.codesynthesis.com/products/odb/ -odb: |