pg 1.4.5-x86-mingw32 → 1.4.6-x86-mingw32

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: df47ac1bc7e1e43fee730bf66c444020bd21b6e0936f9a4bd29a19934616c427
4
- data.tar.gz: 8fa91868eb9187d59112c91cfc631b80ca9bdef962eb8928cc4b01b033609ce4
3
+ metadata.gz: 9ec5c938af64e7e863fb6b546303bd4845c4a7cfa3104e0f2dd1ca45c9f1e522
4
+ data.tar.gz: 2cce98527022f384ebe526fb65b5a75dd1b9626683b086bc7bc38fffbe76e6dd
5
5
  SHA512:
6
- metadata.gz: 950e835b55a9cb00154b5056a9ce9bd567af830777cd3bceed6d34632a6db10c21905d2e37f8ebc523f7d8fbd24360d78b25d0abf685fd34fe5d263cc4f97d8c
7
- data.tar.gz: 8faadde875371da4750a8e09f8a7bffefc2f10b1e084312c723eafbc9761e424a59b8e4341786294581cb3d9d2eabb3f926b7a2d822a7ca3e76e982bdaf329e8
6
+ metadata.gz: b905b3a1da7f55399095451faad38120ed36875dfb75f568cefbe111998c0c96ee7618ab80c39f419521447bcfe5bd51a100a47dbb4cddfffbf0db40838e122a
7
+ data.tar.gz: becdcc7c973da6b5b333d29ce597e6a609ca765bf23058c20ff9b50e4884a1c069b33a3c8a288014f3ac9c1ff23f609a95fee570a031c20d8e11c6e0d65cfa60
checksums.yaml.gz.sig CHANGED
@@ -1,4 +1,2 @@
1
- �W�,��e�����HP��@�KC
2
- ����odGV ���p���5m�;��'WT
3
- m��� �a�_��C� q)3��* d��&�f�YGV��U��� �
4
- ��Y=��@ ���4p����\J�*0\|�%t~%��`P�-�#�j��a����lj:Y���
1
+ M+����u\YɱC����E3;�uE������Z�E$P��}�bf�D>M�~���v�$�U�$_���~lJ^�b7x��O0�Ne�o/Ta�b'(� �sC��%}\�G!����b��f��
2
+ 8���g�:�>����p�ig��)�x���,�>BJ�7J6���ł4U/D'�\��(�[\�@)�Z�7j�lja�OM����3��xÕ["�����؇���?�R�ș�ސ��<�[�-{z+G�U����J �=�ɉr���%�l!u��Ɲ�?���ҟS&\��_ ��0TYf7K3[A�����J�>L(��]�s��&j��iq
data/.appveyor.yml CHANGED
@@ -7,8 +7,11 @@ install:
7
7
  - ps: |
8
8
  if ($env:RUBYDOWNLOAD -ne $null) {
9
9
  $(new-object net.webclient).DownloadFile("https://github.com/oneclick/rubyinstaller2/releases/download/rubyinstaller-head/rubyinstaller-head-$env:RUBYDOWNLOAD.exe", "$pwd/ruby-setup.exe")
10
- cmd /c ruby-setup.exe /verysilent /dir=C:/Ruby$env:ruby_version
10
+ cmd /c ruby-setup.exe /currentuser /verysilent /dir=C:/Ruby$env:ruby_version
11
11
  }
12
+ - cmd: |
13
+ ridk enable
14
+ c:/msys64/usr/bin/bash -lc "pacman -S --noconfirm --needed ${MINGW_PACKAGE_PREFIX}-pkgconf ${MINGW_PACKAGE_PREFIX}-libyaml ${MINGW_PACKAGE_PREFIX}-gcc"
12
15
  - ruby --version
13
16
  - gem --version
14
17
  - gem install bundler --conservative
@@ -18,19 +21,22 @@ install:
18
21
  {
19
22
  $(new-object net.webclient).DownloadFile('http://get.enterprisedb.com/postgresql/postgresql-' + $env:PGVERSION + '.exe', 'C:/postgresql-setup.exe')
20
23
  cmd /c "C:/postgresql-setup.exe" --mode unattended --extract-only 1
24
+
25
+ $env:PATH = 'C:/Program Files/PostgreSQL/' + $env:PGVER + '/bin;' + $env:PATH
26
+ $env:PATH = 'C:/Program Files (x86)/PostgreSQL/' + $env:PGVER + '/bin;' + $env:PATH
27
+ } else {
28
+ c:/msys64/usr/bin/bash -lc "pacman -S --noconfirm --needed `${MINGW_PACKAGE_PREFIX}-postgresql"
21
29
  }
22
- $env:PATH = 'C:/Program Files/PostgreSQL/' + $env:PGVER + '/bin;' + $env:PATH
23
- $env:PATH = 'C:/Program Files (x86)/PostgreSQL/' + $env:PGVER + '/bin;' + $env:PATH
30
+ - echo %PATH%
31
+ - pg_config
24
32
  build_script:
25
33
  - bundle exec rake -rdevkit compile --trace
26
34
  test_script:
27
35
  - bundle exec rake test PG_DEBUG=0
36
+ on_failure:
37
+ - find -name mkmf.log | xargs cat
28
38
  environment:
29
39
  matrix:
30
40
  - ruby_version: "head"
31
41
  RUBYDOWNLOAD: x86
32
- PGVERSION: 10.20-1-windows
33
- PGVER: 10
34
- - ruby_version: "25"
35
- PGVERSION: 9.3.25-1-windows
36
- PGVER: 9.3
42
+ - ruby_version: "30-x64"
@@ -1,6 +1,11 @@
1
1
  name: Binary gems
2
2
 
3
- on: [push, pull_request]
3
+ on:
4
+ push:
5
+ pull_request:
6
+ workflow_dispatch:
7
+ schedule:
8
+ - cron: "0 5 * * 3" # At 05:00 on Wednesday # https://crontab.guru/#0_5_*_*_3
4
9
 
5
10
  jobs:
6
11
  job_build_x64:
@@ -12,12 +17,13 @@ jobs:
12
17
  include:
13
18
  - platform: "x64-mingw-ucrt"
14
19
  - platform: "x64-mingw32"
20
+ - platform: "x86-mingw32"
15
21
  steps:
16
- - uses: actions/checkout@v2
22
+ - uses: actions/checkout@v3
17
23
  - name: Set up Ruby
18
24
  uses: ruby/setup-ruby@v1
19
25
  with:
20
- ruby-version: "3.1"
26
+ ruby-version: "3.2"
21
27
  - run: bundle install
22
28
 
23
29
  - name: Create a dummy cert to satisfy the build
@@ -31,7 +37,7 @@ jobs:
31
37
  run: bundle exec rake gem:windows:${{ matrix.platform }}
32
38
 
33
39
  - name: Upload binary gem
34
- uses: actions/upload-artifact@v2
40
+ uses: actions/upload-artifact@v3
35
41
  with:
36
42
  name: binary-gem
37
43
  path: pkg/*.gem
@@ -43,25 +49,43 @@ jobs:
43
49
  fail-fast: false
44
50
  matrix:
45
51
  include:
46
- - ruby: "3.1"
52
+ - os: windows-latest
53
+ ruby: "3.2"
47
54
  platform: "x64-mingw-ucrt"
48
55
  PGVERSION: 15.1-1-windows-x64
49
- - ruby: "2.5"
56
+ - os: windows-latest
57
+ ruby: "3.1.3-1"
58
+ platform: "x86-mingw32"
59
+ PGVERSION: 10.20-1-windows
60
+ - os: windows-latest
61
+ ruby: "2.5"
50
62
  platform: "x64-mingw32"
51
63
  PGVERSION: 10.20-1-windows
52
64
 
53
- runs-on: windows-latest
65
+ runs-on: ${{ matrix.os }}
54
66
  env:
55
67
  PGVERSION: ${{ matrix.PGVERSION }}
56
68
  steps:
57
- - uses: actions/checkout@v2
69
+ - uses: actions/checkout@v3
58
70
  - name: Set up Ruby
71
+ if: matrix.platform != 'x86-mingw32'
59
72
  uses: ruby/setup-ruby@v1
60
73
  with:
61
74
  ruby-version: ${{ matrix.ruby }}
62
75
 
76
+ - name: Set up 32 bit x86 Ruby
77
+ if: matrix.platform == 'x86-mingw32'
78
+ run: |
79
+ $(new-object net.webclient).DownloadFile("https://github.com/oneclick/rubyinstaller2/releases/download/RubyInstaller-${{ matrix.ruby }}/rubyinstaller-${{ matrix.ruby }}-x86.exe", "$pwd/ruby-setup.exe")
80
+ cmd /c ruby-setup.exe /currentuser /verysilent /dir=C:/Ruby-${{ matrix.ruby }}
81
+ echo "c:/ruby-${{ matrix.ruby }}/bin" | Out-File -FilePath $env:GITHUB_PATH -Encoding utf8 -Append
82
+
83
+ c:/ruby-${{ matrix.ruby }}/bin/ridk enable
84
+ c:/msys64/usr/bin/bash -lc "pacman -S --noconfirm --needed make `${MINGW_PACKAGE_PREFIX}-pkgconf `${MINGW_PACKAGE_PREFIX}-libyaml `${MINGW_PACKAGE_PREFIX}-gcc `${MINGW_PACKAGE_PREFIX}-make"
85
+ echo "C:/msys64/$env:MSYSTEM_PREFIX/bin" | Out-File -FilePath $env:GITHUB_PATH -Encoding utf8 -Append
86
+
63
87
  - name: Download gem from build job
64
- uses: actions/download-artifact@v2
88
+ uses: actions/download-artifact@v3
65
89
  with:
66
90
  name: binary-gem
67
91
 
@@ -79,8 +103,15 @@ jobs:
79
103
  echo "PGUSER=$env:USERNAME" | Out-File -FilePath $env:GITHUB_ENV -Encoding utf8 -Append
80
104
  echo "PGPASSWORD=" | Out-File -FilePath $env:GITHUB_ENV -Encoding utf8 -Append
81
105
 
82
- - run: gem update --system
106
+ - run: echo $env:PATH
107
+ - run: gem update --system 3.3.26
83
108
  - run: bundle install
84
109
  - run: gem install --local pg-*${{ matrix.platform }}.gem --verbose
85
110
  - name: Run specs
86
111
  run: ruby -rpg -S rspec -fd spec/**/*_spec.rb
112
+
113
+ - name: Print logs if job failed
114
+ if: ${{ failure() && matrix.os == 'windows-latest' }}
115
+ run: |
116
+ ridk enable
117
+ find "$(ruby -e"puts RbConfig::CONFIG[%q[libdir]]")" -name mkmf.log -print0 | xargs -0 cat
@@ -1,23 +1,28 @@
1
1
  name: Source gem
2
2
 
3
- on: [push, pull_request]
3
+ on:
4
+ push:
5
+ pull_request:
6
+ workflow_dispatch:
7
+ schedule:
8
+ - cron: "0 5 * * 3" # At 05:00 on Wednesday # https://crontab.guru/#0_5_*_*_3
4
9
 
5
10
  jobs:
6
11
  job_build_gem:
7
12
  name: build
8
13
  runs-on: ubuntu-latest
9
14
  steps:
10
- - uses: actions/checkout@v2
15
+ - uses: actions/checkout@v3
11
16
  - name: Set up Ruby
12
17
  uses: ruby/setup-ruby@v1
13
18
  with:
14
- ruby-version: "3.1"
19
+ ruby-version: "3.2"
15
20
 
16
21
  - name: Build source gem
17
22
  run: gem build pg.gemspec
18
23
 
19
24
  - name: Upload source gem
20
- uses: actions/upload-artifact@v2
25
+ uses: actions/upload-artifact@v3
21
26
  with:
22
27
  name: source-gem
23
28
  path: "*.gem"
@@ -41,9 +46,10 @@ jobs:
41
46
  ruby: "head"
42
47
  PGVER: "15"
43
48
  - os: ubuntu
44
- ruby: "3.1"
49
+ ruby: "3.2"
45
50
  PGVER: "12"
46
51
  - os: ubuntu
52
+ os_ver: "20.04"
47
53
  ruby: "2.5"
48
54
  PGVER: "9.3"
49
55
  - os: ubuntu
@@ -57,21 +63,21 @@ jobs:
57
63
  PGVERSION: 15.1-1-osx
58
64
  PGVER: "15"
59
65
 
60
- runs-on: ${{ matrix.os }}-latest
66
+ runs-on: ${{ matrix.os }}-${{ matrix.os_ver || 'latest' }}
61
67
  env:
62
68
  PGVERSION: ${{ matrix.PGVERSION }}
63
69
  PGVER: ${{ matrix.PGVER }}
64
70
  MAKE: make -j2 V=1
65
71
 
66
72
  steps:
67
- - uses: actions/checkout@v2
73
+ - uses: actions/checkout@v3
68
74
  - name: Set up Ruby
69
75
  uses: ruby/setup-ruby@v1
70
76
  with:
71
77
  ruby-version: ${{ matrix.ruby }}
72
78
 
73
79
  - name: Download gem from build job
74
- uses: actions/download-artifact@v2
80
+ uses: actions/download-artifact@v3
75
81
  with:
76
82
  name: source-gem
77
83
 
@@ -98,10 +104,10 @@ jobs:
98
104
  - name: Download PostgreSQL Ubuntu
99
105
  if: matrix.os == 'ubuntu'
100
106
  run: |
101
- echo "deb http://apt.postgresql.org/pub/repos/apt/ focal-pgdg main $PGVER" | sudo tee -a /etc/apt/sources.list.d/pgdg.list
107
+ echo "deb http://apt.postgresql.org/pub/repos/apt/ $(lsb_release -cs)-pgdg main $PGVER" | sudo tee -a /etc/apt/sources.list.d/pgdg.list
102
108
  wget --quiet -O - https://www.postgresql.org/media/keys/ACCC4CF8.asc | sudo apt-key add -
103
- sudo apt -y update
104
- sudo apt -y --allow-downgrades install postgresql-$PGVER libpq5=$PGVER* libpq-dev=$PGVER*
109
+ sudo apt-get -y update
110
+ sudo apt-get -y --allow-downgrades install postgresql-$PGVER libpq5=$PGVER* libpq-dev=$PGVER*
105
111
  echo /usr/lib/postgresql/$PGVER/bin >> $GITHUB_PATH
106
112
 
107
113
  - name: Download PostgreSQL Macos
@@ -112,7 +118,7 @@ jobs:
112
118
  sudo unzip postgresql-$PGVERSION-binaries.zip -d /Library/PostgreSQL/$PGVER && \
113
119
  echo /Library/PostgreSQL/$PGVER/bin >> $GITHUB_PATH
114
120
 
115
- - run: gem update --system
121
+ - run: gem update --system 3.3.26
116
122
  - run: bundle install
117
123
 
118
124
  - run: gem install --local *.gem --verbose
data/.gitignore CHANGED
@@ -1,13 +1,19 @@
1
1
  *.lock
2
+ *.orig
3
+ *_BACKUP_*
4
+ *_BASE_*
5
+ *_LOCAL_*
6
+ *_REMOTE_*
2
7
  /.test_symlink
3
8
  /build/
4
9
  /doc/
5
10
  /lib/*.bundle
6
11
  /lib/*.so
7
- /lib/2.*/
12
+ /lib/2.?/
13
+ /lib/3.?/
8
14
  /pkg/
9
15
  /tmp/
10
- /tmp_test_specs/
16
+ /tmp_test_*/
11
17
  /vendor/
12
18
  /lib/libpq.dll
13
19
  /lib/pg/postgresql_lib_path.rb
data/.travis.yml CHANGED
@@ -38,8 +38,8 @@ before_install:
38
38
  # Download and install postgresql version to test against in /opt (for non-cross compile only)
39
39
  - echo "deb http://apt.postgresql.org/pub/repos/apt/ ${TRAVIS_DIST}-pgdg main $PGVERSION" | sudo tee -a /etc/apt/sources.list.d/pgdg.list
40
40
  - wget --quiet -O - https://www.postgresql.org/media/keys/ACCC4CF8.asc | sudo apt-key add -
41
- - sudo apt -y update
42
- - sudo apt -y --allow-downgrades install postgresql-$PGVERSION libpq5=$PGVERSION* libpq-dev=$PGVERSION*
41
+ - sudo apt-get -y update
42
+ - sudo apt-get -y --allow-downgrades install postgresql-$PGVERSION libpq5=$PGVERSION* libpq-dev=$PGVERSION*
43
43
  - export PATH=/usr/lib/postgresql/$PGVERSION/bin:$PATH
44
44
 
45
45
  script: