[libpostgresql-jdbc-java] branch master updated (49822c2 -> 4a9b2fd)

Emmanuel Bourg ebourg-guest at moszumanska.debian.org
Mon Jan 9 15:24:29 UTC 2017


This is an automated email from the git hooks/post-receive script.

ebourg-guest pushed a change to branch master
in repository libpostgresql-jdbc-java.

      from  49822c2   Wrap and sort
       new  aa5475e   Reset the upstream sources
       new  bc1a2ca   Converted debian/copyright to the Copyright Format 1.0
       new  213b09c   Rewrote debian/watch to fetch the new releases directly from Git
       new  e577cd8   Initial upstream branch
       new  5792e23   Merge branch 'upstream'
       new  5821030   New upstream version 9.3-1104
       new  3b3de6d   Merge tag 'upstream/9.3-1104'
       new  e38db49   Disabled remote jar fetching
       new  22c4349   Refreshed the patches
       new  79263c1   No longer build the JDBC 3 jar, default to JDBC 4 (Closes: #820943, #820942)
       new  b2be765   Adjusted the path of the README file
       new  46fc376   Removed the dummy libpg-java package
       new  4a9b2fd   Use the upstream POM (org.postgresql:postgresql)

The 13 revisions listed above as "new" are entirely new to this
repository and will be described in separate emails.  The revisions
listed as "adds" were already present in the repository and have only
been added to this reference.


Summary of changes:
 .gitignore                                         |   4 +
 .travis.yml                                        |  14 +
 README => README.md                                | 126 ++---
 build.properties                                   |   7 +-
 build.xml                                          |  41 +-
 debian/changelog                                   |   8 +-
 debian/control                                     |  10 -
 debian/copyright                                   |  72 +--
 debian/libpostgresql-jdbc-java.docs                |   2 +-
 debian/libpostgresql-jdbc-java.links               |   5 +-
 debian/libpostgresql-jdbc-java.pom                 |  36 --
 debian/libpostgresql-jdbc-java.poms                |   1 +
 debian/patches/classpath.patch                     |  18 +
 debian/patches/link-javadoc.patch                  |   2 +-
 debian/patches/series                              |   1 +
 debian/rules                                       |  29 +-
 debian/watch                                       |   5 +-
 doc/pgjdbc.xml                                     |  30 +-
 org/postgresql/Driver.java.in                      |  54 +-
 org/postgresql/PGConnection.java                   |   6 +
 org/postgresql/PGResultSetMetaData.java            |  10 +
 org/postgresql/copy/CopyManager.java               |  26 +-
 org/postgresql/copy/PGCopyInputStream.java         |  16 +-
 org/postgresql/core/BaseConnection.java            |   5 +
 org/postgresql/core/PGStream.java                  |  17 +-
 org/postgresql/core/ProtocolConnection.java        |  12 +
 org/postgresql/core/v2/ConnectionFactoryImpl.java  |  29 +-
 org/postgresql/core/v2/ProtocolConnectionImpl.java |  29 +-
 org/postgresql/core/v2/QueryExecutorImpl.java      |  19 +-
 org/postgresql/core/v3/ConnectionFactoryImpl.java  |  57 +-
 org/postgresql/core/v3/ProtocolConnectionImpl.java |  29 +-
 org/postgresql/core/v3/QueryExecutorImpl.java      |  82 ++-
 org/postgresql/core/v3/SimpleParameterList.java    |  11 +-
 org/postgresql/ds/common/BaseDataSource.java       | 177 +++++--
 .../ds/jdbc23/AbstractJdbc23PooledConnection.java  |  99 ++--
 .../ds/jdbc4/AbstractJdbc4PoolingDataSource.java   |   8 +-
 .../ds/jdbc4/AbstractJdbc4SimpleDataSource.java    |   8 +-
 org/postgresql/geometric/PGcircle.java             |   2 +-
 org/postgresql/geometric/PGline.java               | 138 +++--
 org/postgresql/geometric/PGpoint.java              |   4 +-
 org/postgresql/jdbc2/AbstractJdbc2Array.java       | 112 ++--
 org/postgresql/jdbc2/AbstractJdbc2Clob.java        |   7 +-
 org/postgresql/jdbc2/AbstractJdbc2Connection.java  |  96 +++-
 .../jdbc2/AbstractJdbc2DatabaseMetaData.java       |  56 +-
 org/postgresql/jdbc2/AbstractJdbc2ResultSet.java   |  39 +-
 .../jdbc2/AbstractJdbc2ResultSetMetaData.java      |  28 +-
 org/postgresql/jdbc2/AbstractJdbc2Statement.java   | 138 +++--
 org/postgresql/jdbc2/ArrayAssistant.java           |  34 ++
 org/postgresql/jdbc2/ArrayAssistantRegistry.java   |  22 +
 org/postgresql/jdbc2/CacheMetadata.java            |  76 +++
 org/postgresql/jdbc2/TimestampUtils.java           |   4 +-
 org/postgresql/jdbc2/TypeInfoCache.java            |  55 +-
 org/postgresql/jdbc3/AbstractJdbc3Connection.java  |   4 +-
 org/postgresql/jdbc4/AbstractJdbc4Connection.java  |  71 ++-
 .../jdbc4/AbstractJdbc4DatabaseMetaData.java       |   8 +-
 .../jdbc4/AbstractJdbc4ParameterMetaData.java      |   8 +-
 org/postgresql/jdbc4/AbstractJdbc4ResultSet.java   |   8 +-
 .../jdbc4/AbstractJdbc4ResultSetMetaData.java      |   8 +-
 org/postgresql/jdbc4/AbstractJdbc4Statement.java   |   8 +-
 org/postgresql/jdbc4/Jdbc4Array.java               |   8 +
 org/postgresql/jdbc4/array/UUIDArrayAssistant.java |  23 +
 org/postgresql/largeobject/LargeObjectManager.java |   5 +-
 org/postgresql/ssl/DbKeyStoreSocketFactory.java    |  65 +++
 org/postgresql/ssl/jdbc4/LazyKeyManager.java       |  19 +-
 org/postgresql/ssl/jdbc4/LibPQFactory.java         |   7 +-
 org/postgresql/test/TestUtil.java                  | 118 +++++
 .../ds/common/BaseDataSourceParameterTest.java     |  73 +++
 .../test/ds/common/DataSourceTestSuite.java        |  50 ++
 org/postgresql/test/extensions/HStoreTest.java     |   4 +
 org/postgresql/test/jdbc2/ArrayTest.java           |   2 +
 .../test/jdbc2/ColumnSanitiserDisabledTest.java    | 133 +++++
 .../test/jdbc2/ColumnSanitiserEnabledTest.java     | 126 +++++
 org/postgresql/test/jdbc2/ConnectTimeoutTest.java  |  45 ++
 org/postgresql/test/jdbc2/CopyTest.java            |  40 ++
 .../test/jdbc2/DatabaseMetaDataTest.java           |  17 +
 org/postgresql/test/jdbc2/DriverTest.java          |  23 +
 org/postgresql/test/jdbc2/GeometricTest.java       |  61 ++-
 org/postgresql/test/jdbc2/Jdbc2TestSuite.java      |  10 +-
 .../test/jdbc2/ResultSetMetaDataTest.java          |  21 +-
 .../test/jdbc2/SearchPathLookupTest.java           | 126 +++++
 org/postgresql/test/jdbc2/ServerErrorTest.java     | 100 ++++
 .../test/jdbc2/ServerPreparedStmtTest.java         |   5 +-
 org/postgresql/test/jdbc2/StatementTest.java       |  50 ++
 org/postgresql/test/jdbc2/TimezoneTest.java        |   6 +-
 .../optional/CaseOptimiserDataSourceTest.java      | 116 +++++
 .../test/jdbc2/optional/OptionalTestSuite.java     |   1 +
 org/postgresql/test/jdbc3/Jdbc3TestSuite.java      |   1 +
 .../test/jdbc3/StringTypeParameterTest.java        | 143 +++++
 org/postgresql/test/jdbc4/ArrayTest.java           |  47 +-
 org/postgresql/test/jdbc4/BinaryTest.java          | 120 +++++
 org/postgresql/test/jdbc4/Jdbc4TestSuite.java      |   2 +
 .../test/jdbc4/PGCopyInputStreamTest.java          |  92 ++++
 org/postgresql/test/jdbc4/WrapperTest.java         | 107 ++++
 .../test/jdbc4/jdbc41/Jdbc41TestSuite.java         |  31 ++
 org/postgresql/test/jdbc4/jdbc41/SchemaTest.java   | 213 ++++++++
 org/postgresql/test/xa/XADataSourceTest.java       |  37 +-
 org/postgresql/translation/bg.po                   | 190 +++----
 org/postgresql/translation/cs.po                   | 438 ++++++++--------
 org/postgresql/translation/de.po                   | 452 ++++++++--------
 org/postgresql/translation/es.po                   | 178 +++----
 org/postgresql/translation/fr.po                   | 574 ++++++++++-----------
 org/postgresql/translation/it.po                   | 515 +++++++++---------
 org/postgresql/translation/ja.po                   | 533 +++++++++----------
 org/postgresql/translation/messages_bg.class       | Bin 39423 -> 39580 bytes
 org/postgresql/translation/messages_cs.class       | Bin 12906 -> 13034 bytes
 org/postgresql/translation/messages_de.class       | Bin 25726 -> 25855 bytes
 org/postgresql/translation/messages_es.class       | Bin 3924 -> 4056 bytes
 org/postgresql/translation/messages_fr.class       | Bin 25363 -> 25507 bytes
 org/postgresql/translation/messages_it.class       | Bin 24487 -> 24631 bytes
 org/postgresql/translation/messages_ja.class       | Bin 34163 -> 37779 bytes
 org/postgresql/translation/messages_nl.class       | Bin 2379 -> 2378 bytes
 org/postgresql/translation/messages_pl.class       | Bin 11385 -> 11512 bytes
 org/postgresql/translation/messages_pt_BR.class    | Bin 27160 -> 27293 bytes
 org/postgresql/translation/messages_ru.class       | Bin 8433 -> 8584 bytes
 org/postgresql/translation/messages_sr.class       | Bin 26366 -> 26521 bytes
 org/postgresql/translation/messages_tr.class       | Bin 26336 -> 26459 bytes
 org/postgresql/translation/messages_zh_CN.class    | Bin 17280 -> 17399 bytes
 org/postgresql/translation/messages_zh_TW.class    | Bin 17281 -> 17400 bytes
 org/postgresql/translation/nl.po                   | 181 +++----
 org/postgresql/translation/pl.po                   | 178 +++----
 org/postgresql/translation/pt_BR.po                | 182 +++----
 org/postgresql/translation/ru.po                   | 182 +++----
 org/postgresql/translation/sr.po                   | 182 +++----
 org/postgresql/translation/tr.po                   | 182 +++----
 org/postgresql/translation/zh_CN.po                | 178 +++----
 org/postgresql/translation/zh_TW.po                | 178 +++----
 org/postgresql/util/GT.java                        |  10 +-
 org/postgresql/util/PGJDBCMain.java                |  24 +
 org/postgresql/util/PGmoney.java                   |   2 +-
 org/postgresql/util/PGobject.java                  |  13 +-
 org/postgresql/util/PGtokenizer.java               |  24 +-
 org/postgresql/util/PSQLDriverVersion.java         |   4 +-
 org/postgresql/util/PSQLState.java                 |   1 +
 org/postgresql/util/ServerErrorMessage.java        |  30 ++
 org/postgresql/xa/PGXAConnection.java              |  21 +
 src/pom/pom.xml                                    |   3 +-
 136 files changed, 5733 insertions(+), 2800 deletions(-)
 create mode 100644 .travis.yml
 rename README => README.md (63%)
 delete mode 100644 debian/libpostgresql-jdbc-java.pom
 create mode 100644 debian/libpostgresql-jdbc-java.poms
 create mode 100644 debian/patches/classpath.patch
 create mode 100644 org/postgresql/jdbc2/ArrayAssistant.java
 create mode 100644 org/postgresql/jdbc2/ArrayAssistantRegistry.java
 create mode 100644 org/postgresql/jdbc2/CacheMetadata.java
 create mode 100644 org/postgresql/jdbc4/array/UUIDArrayAssistant.java
 create mode 100644 org/postgresql/ssl/DbKeyStoreSocketFactory.java
 create mode 100644 org/postgresql/test/ds/common/BaseDataSourceParameterTest.java
 create mode 100644 org/postgresql/test/ds/common/DataSourceTestSuite.java
 create mode 100644 org/postgresql/test/jdbc2/ColumnSanitiserDisabledTest.java
 create mode 100644 org/postgresql/test/jdbc2/ColumnSanitiserEnabledTest.java
 create mode 100644 org/postgresql/test/jdbc2/ConnectTimeoutTest.java
 create mode 100644 org/postgresql/test/jdbc2/SearchPathLookupTest.java
 create mode 100644 org/postgresql/test/jdbc2/ServerErrorTest.java
 create mode 100644 org/postgresql/test/jdbc2/optional/CaseOptimiserDataSourceTest.java
 create mode 100644 org/postgresql/test/jdbc3/StringTypeParameterTest.java
 create mode 100644 org/postgresql/test/jdbc4/BinaryTest.java
 create mode 100644 org/postgresql/test/jdbc4/PGCopyInputStreamTest.java
 create mode 100644 org/postgresql/test/jdbc4/WrapperTest.java
 create mode 100644 org/postgresql/test/jdbc4/jdbc41/Jdbc41TestSuite.java
 create mode 100644 org/postgresql/test/jdbc4/jdbc41/SchemaTest.java
 create mode 100644 org/postgresql/util/PGJDBCMain.java

-- 
Alioth's /usr/local/bin/git-commit-notice on /srv/git.debian.org/git/pkg-java/libpostgresql-jdbc-java.git



More information about the pkg-java-commits mailing list