Skip to content

Commit

Permalink
Update changelog and version to 18.2
Browse files Browse the repository at this point in the history
  • Loading branch information
darold committed Sep 1, 2017
1 parent 6f54e81 commit 8800aa4
Show file tree
Hide file tree
Showing 11 changed files with 735 additions and 15 deletions.
722 changes: 721 additions & 1 deletion changelog

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion lib/Ora2Pg.pm
Expand Up @@ -42,7 +42,7 @@ use Benchmark;
#set locale to LC_NUMERIC C
setlocale(LC_NUMERIC,"C");

$VERSION = '18.1';
$VERSION = '18.2';
$PSQL = $ENV{PLSQL} || 'psql';

$| = 1;
Expand Down
2 changes: 1 addition & 1 deletion lib/Ora2Pg/GEOM.pm
Expand Up @@ -40,7 +40,7 @@ use vars qw($VERSION);

use strict;

$VERSION = '18.1';
$VERSION = '18.2';

# SDO_ETYPE
# Second element of triplet in SDO_ELEM_INFO
Expand Down
2 changes: 1 addition & 1 deletion lib/Ora2Pg/MySQL.pm
Expand Up @@ -9,7 +9,7 @@ use POSIX qw(locale_h);
setlocale(LC_NUMERIC,"C");


$VERSION = '18.1';
$VERSION = '18.2';

# These definitions can be overriden from configuration file
our %MYSQL_TYPE = (
Expand Down
2 changes: 1 addition & 1 deletion lib/Ora2Pg/PLSQL.pm
Expand Up @@ -31,7 +31,7 @@ use POSIX qw(locale_h);
setlocale(LC_NUMERIC,"C");


$VERSION = '18.1';
$VERSION = '18.2';

#----------------------------------------------------
# Cost scores used when converting PLSQL to PLPGSQL
Expand Down
8 changes: 4 additions & 4 deletions packaging/README
Expand Up @@ -12,13 +12,13 @@ RPM/

The binary package may be found here:

~/rpmbuild/RPMS/noarch/ora2pg-18.1-1.noarch.rpm
~/rpmbuild/RPMS/noarch/ora2pg-18.2-1.noarch.rpm
or
/usr/src/redhat/RPMS/i386/ora2pg-18.1-1.noarch.rpm
/usr/src/redhat/RPMS/i386/ora2pg-18.2-1.noarch.rpm

To install run:

rpm -i ~/rpmbuild/RPMS/noarch/ora2pg-18.1-1.noarch.rpm
rpm -i ~/rpmbuild/RPMS/noarch/ora2pg-18.2-1.noarch.rpm


slackbuild/
Expand All @@ -30,7 +30,7 @@ slackbuild/
then take a look at /tmp/build/ to find the Slackware package.
To install run the following command:

installpkg /tmp/build/ora2pg-18.1-i386-1gda.tgz
installpkg /tmp/build/ora2pg-18.2-i386-1gda.tgz


debian/
Expand Down
2 changes: 1 addition & 1 deletion packaging/debian/ora2pg/DEBIAN/control
@@ -1,5 +1,5 @@
Package: ora2pg
Version: 18.1
Version: 18.2
Priority: optional
Architecture: all
Essential: no
Expand Down
2 changes: 1 addition & 1 deletion packaging/slackbuild/Ora2Pg.SlackBuild
Expand Up @@ -12,7 +12,7 @@

## Fill these variables to your needs ##
NAMESRC=${NAMESRC:-ora2pg}
VERSION=${VERSION:-18.1}
VERSION=${VERSION:-18.2}
EXT=${EXT:-tar.bz2}
NAMEPKG=${NAMEPKG:-ora2pg}
PKGEXT=${PKGEXT:-tgz/txz}
Expand Down
4 changes: 2 additions & 2 deletions packaging/slackbuild/Ora2Pg.info
@@ -1,7 +1,7 @@
PRGNAM="Ora2Pg"
VERSION="18.1"
VERSION="18.2"
HOMEPAGE="http://ora2pg.darold.net/"
DOWNLOAD="http://downloads.sourceforge.net/ora2pg/ora2pg-18.1.tar.gz"
DOWNLOAD="http://downloads.sourceforge.net/ora2pg/ora2pg-18.2.tar.gz"
MD5SUM=""
DOWNLOAD_x86_64="UNTESTED"
MD5SUM_x86_64=""
Expand Down
2 changes: 1 addition & 1 deletion scripts/ora2pg
Expand Up @@ -31,7 +31,7 @@ use POSIX qw(locale_h sys_wait_h _exit);
setlocale(LC_NUMERIC, '');
setlocale(LC_ALL, 'C');

my $VERSION = '18.1';
my $VERSION = '18.2';

$| = 1;

Expand Down
2 changes: 1 addition & 1 deletion scripts/ora2pg_scanner
Expand Up @@ -26,7 +26,7 @@ use strict;

use Getopt::Long qw(:config no_ignore_case bundling);

my $VERSION = '18.1';
my $VERSION = '18.2';

my @DB_DNS = ();
my $OUTDIR = '';
Expand Down

0 comments on commit 8800aa4

Please sign in to comment.