sqlite3 1.6.0.rc2-arm-linux → 1.6.2-arm-linux
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 +4 -4
- data/CHANGELOG.md +20 -1
- data/CONTRIBUTING.md +9 -0
- data/README.md +4 -4
- data/dependencies.yml +7 -8
- data/ext/sqlite3/backup.c +1 -1
- data/ext/sqlite3/database.c +1 -1
- data/ext/sqlite3/extconf.rb +2 -1
- data/ext/sqlite3/sqlite3.c +2 -2
- data/ext/sqlite3/statement.c +1 -1
- data/lib/sqlite3/2.7/sqlite3_native.so +0 -0
- data/lib/sqlite3/3.0/sqlite3_native.so +0 -0
- data/lib/sqlite3/3.1/sqlite3_native.so +0 -0
- data/lib/sqlite3/3.2/sqlite3_native.so +0 -0
- data/lib/sqlite3/version.rb +3 -3
- metadata +8 -8
    
        checksums.yaml
    CHANGED
    
    | @@ -1,7 +1,7 @@ | |
| 1 1 | 
             
            ---
         | 
| 2 2 | 
             
            SHA256:
         | 
| 3 | 
            -
              metadata.gz:  | 
| 4 | 
            -
              data.tar.gz:  | 
| 3 | 
            +
              metadata.gz: 96444ff04b361b59e0f0a14e30b265a79721591b93cd52dd8d464801bbb28249
         | 
| 4 | 
            +
              data.tar.gz: 2a55775f3a7295cead2e9c070eb4e970fb36c8787b1b5afbb9707b0610509d53
         | 
| 5 5 | 
             
            SHA512:
         | 
| 6 | 
            -
              metadata.gz:  | 
| 7 | 
            -
              data.tar.gz:  | 
| 6 | 
            +
              metadata.gz: 35a13469b4b77399a8ae52dc2aeec21ed218eb345c13da24010683661f71dc8ba21fe2a109dab2a3a94330c484cc2a3925d90584cd71a56e4c35eb0ed19f4963
         | 
| 7 | 
            +
              data.tar.gz: 421cffdbb070955b951c65a4e3c7b52708f83076e7cd80dc19a2b10f2a6ebf2bbb7b3f12bf267728bb691e4a09f50fa29f887833fb051cce575492cf93357cca
         | 
    
        data/CHANGELOG.md
    CHANGED
    
    | @@ -1,6 +1,25 @@ | |
| 1 1 | 
             
            # sqlite3-ruby Changelog
         | 
| 2 2 |  | 
| 3 | 
            -
            ## 1.6. | 
| 3 | 
            +
            ## 1.6.2 / 2023-03-27
         | 
| 4 | 
            +
             | 
| 5 | 
            +
            ### Dependencies
         | 
| 6 | 
            +
             | 
| 7 | 
            +
            Vendored sqlite is updated from v3.41.0 to [v3.41.2](https://sqlite.org/releaselog/3_41_2.html).
         | 
| 8 | 
            +
             | 
| 9 | 
            +
             | 
| 10 | 
            +
            ### Packaging
         | 
| 11 | 
            +
             | 
| 12 | 
            +
            * Allow compilation against system libraries without the presence of `mini_portile2`, primarily for the convenience of linux distro repackagers. [#381] (Thank you, @voxik!)
         | 
| 13 | 
            +
             | 
| 14 | 
            +
             | 
| 15 | 
            +
            ## 1.6.1 / 2023-02-22
         | 
| 16 | 
            +
             | 
| 17 | 
            +
            ### Dependencies
         | 
| 18 | 
            +
             | 
| 19 | 
            +
            * Vendored sqlite is updated to [v3.41.0](https://sqlite.org/releaselog/3_41_0.html).
         | 
| 20 | 
            +
             | 
| 21 | 
            +
             | 
| 22 | 
            +
            ## 1.6.0 / 2023-01-13
         | 
| 4 23 |  | 
| 5 24 | 
             
            ### Ruby
         | 
| 6 25 |  | 
    
        data/CONTRIBUTING.md
    CHANGED
    
    | @@ -12,6 +12,15 @@ As a prerequisite please make sure you have `docker` correctly installed, so tha | |
| 12 12 | 
             
            Run `bin/build-gems` which will package gems for all supported platforms, and run some basic sanity tests on those packages using `bin/test-gem-set` and `bin/test-gem-file-contents`.
         | 
| 13 13 |  | 
| 14 14 |  | 
| 15 | 
            +
            ## Updating the version of libsqlite3
         | 
| 16 | 
            +
             | 
| 17 | 
            +
            Update `/dependencies.yml` to reflect:
         | 
| 18 | 
            +
             | 
| 19 | 
            +
            - the version of libsqlite3
         | 
| 20 | 
            +
            - the URL from which to download
         | 
| 21 | 
            +
            - the checksum of the file, which will need to be verified manually (see comments in that file)
         | 
| 22 | 
            +
             | 
| 23 | 
            +
             | 
| 15 24 | 
             
            ## Making a release
         | 
| 16 25 |  | 
| 17 26 | 
             
            A quick checklist:
         | 
    
        data/README.md
    CHANGED
    
    | @@ -73,13 +73,13 @@ end | |
| 73 73 |  | 
| 74 74 | 
             
            In v1.5.0 and later, native (precompiled) gems are available for recent Ruby versions on these platforms:
         | 
| 75 75 |  | 
| 76 | 
            -
            - `aarch64-linux`
         | 
| 77 | 
            -
            - `arm-linux`
         | 
| 76 | 
            +
            - `aarch64-linux` (requires: glibc >= 2.29)
         | 
| 77 | 
            +
            - `arm-linux` (requires: glibc >= 2.29)
         | 
| 78 78 | 
             
            - `arm64-darwin`
         | 
| 79 79 | 
             
            - `x64-mingw32` / `x64-mingw-ucrt`
         | 
| 80 | 
            -
            - `x86-linux`
         | 
| 80 | 
            +
            - `x86-linux` (requires: glibc >= 2.17)
         | 
| 81 81 | 
             
            - `x86_64-darwin`
         | 
| 82 | 
            -
            - `x86_64-linux`
         | 
| 82 | 
            +
            - `x86_64-linux` (requires: glibc >= 2.17)
         | 
| 83 83 |  | 
| 84 84 | 
             
            If you are using one of these Ruby versions on one of these platforms, the native gem is the recommended way to install sqlite3-ruby.
         | 
| 85 85 |  | 
    
        data/dependencies.yml
    CHANGED
    
    | @@ -2,14 +2,13 @@ | |
| 2 2 | 
             
            :sqlite3:
         | 
| 3 3 | 
             
              # checksum verified by first checking the published sha3(256) checksum against https://sqlite.org/download.html:
         | 
| 4 4 | 
             
              #
         | 
| 5 | 
            -
              # $ sha3sum -a 256 ports/archives/sqlite-autoconf- | 
| 6 | 
            -
              #  | 
| 5 | 
            +
              # $ sha3sum -a 256 ports/archives/sqlite-autoconf-3410200.tar.gz
         | 
| 6 | 
            +
              # 1ebb5539dd6fde9a0f89e8ab765af0b9f02010fc6baf6985b54781a38c00020a  ports/archives/sqlite-autoconf-3410200.tar.gz
         | 
| 7 7 | 
             
              #
         | 
| 8 | 
            -
              #  | 
| 9 | 
            -
              #  | 
| 10 | 
            -
              # 2c5dea207fa508d765af1ef620b637dcb06572afa6f01f0815bd5bbf864b33d9  ports/archives/sqlite-autoconf-3400100.tar.gz
         | 
| 8 | 
            +
              # $ sha256sum ports/archives/sqlite-autoconf-3410200.tar.gz
         | 
| 9 | 
            +
              # e98c100dd1da4e30fa460761dab7c0b91a50b785e167f8c57acc46514fae9499  ports/archives/sqlite-autoconf-3410200.tar.gz
         | 
| 11 10 | 
             
              #
         | 
| 12 | 
            -
              :version: "3. | 
| 11 | 
            +
              :version: "3.41.2"
         | 
| 13 12 | 
             
              :files:
         | 
| 14 | 
            -
                - :url: "https://sqlite.org/ | 
| 15 | 
            -
                  :sha256: " | 
| 13 | 
            +
                - :url: "https://sqlite.org/2023/sqlite-autoconf-3410200.tar.gz"
         | 
| 14 | 
            +
                  :sha256: "e98c100dd1da4e30fa460761dab7c0b91a50b785e167f8c57acc46514fae9499"
         | 
    
        data/ext/sqlite3/backup.c
    CHANGED
    
    
    
        data/ext/sqlite3/database.c
    CHANGED
    
    
    
        data/ext/sqlite3/extconf.rb
    CHANGED
    
    | @@ -1,5 +1,4 @@ | |
| 1 1 | 
             
            require "mkmf"
         | 
| 2 | 
            -
            require "mini_portile2"
         | 
| 3 2 | 
             
            require "yaml"
         | 
| 4 3 |  | 
| 5 4 | 
             
            module Sqlite3
         | 
| @@ -131,6 +130,8 @@ module Sqlite3 | |
| 131 130 | 
             
                  end
         | 
| 132 131 |  | 
| 133 132 | 
             
                  def minimal_recipe
         | 
| 133 | 
            +
                    require "mini_portile2"
         | 
| 134 | 
            +
             | 
| 134 135 | 
             
                    MiniPortile.new(libname, sqlite3_config[:version]).tap do |recipe|
         | 
| 135 136 | 
             
                      if sqlite_source_dir
         | 
| 136 137 | 
             
                        recipe.source_directory = sqlite_source_dir
         | 
    
        data/ext/sqlite3/sqlite3.c
    CHANGED
    
    | @@ -82,7 +82,7 @@ static VALUE threadsafe_p(VALUE UNUSED(klass)) | |
| 82 82 | 
             
              return INT2NUM(sqlite3_threadsafe());
         | 
| 83 83 | 
             
            }
         | 
| 84 84 |  | 
| 85 | 
            -
            void init_sqlite3_constants()
         | 
| 85 | 
            +
            void init_sqlite3_constants(void)
         | 
| 86 86 | 
             
            {
         | 
| 87 87 | 
             
              VALUE mSqlite3Constants;
         | 
| 88 88 | 
             
              VALUE mSqlite3Open;
         | 
| @@ -128,7 +128,7 @@ void init_sqlite3_constants() | |
| 128 128 | 
             
            }
         | 
| 129 129 |  | 
| 130 130 | 
             
            RUBY_FUNC_EXPORTED
         | 
| 131 | 
            -
            void Init_sqlite3_native()
         | 
| 131 | 
            +
            void Init_sqlite3_native(void)
         | 
| 132 132 | 
             
            {
         | 
| 133 133 | 
             
              /*
         | 
| 134 134 | 
             
               * SQLite3 is a wrapper around the popular database
         | 
    
        data/ext/sqlite3/statement.c
    CHANGED
    
    
| Binary file | 
| Binary file | 
| Binary file | 
| Binary file | 
    
        data/lib/sqlite3/version.rb
    CHANGED
    
    
    
        metadata
    CHANGED
    
    | @@ -1,7 +1,7 @@ | |
| 1 1 | 
             
            --- !ruby/object:Gem::Specification
         | 
| 2 2 | 
             
            name: sqlite3
         | 
| 3 3 | 
             
            version: !ruby/object:Gem::Version
         | 
| 4 | 
            -
              version: 1.6. | 
| 4 | 
            +
              version: 1.6.2
         | 
| 5 5 | 
             
            platform: arm-linux
         | 
| 6 6 | 
             
            authors:
         | 
| 7 7 | 
             
            - Jamis Buck
         | 
| @@ -10,7 +10,7 @@ authors: | |
| 10 10 | 
             
            autorequire: 
         | 
| 11 11 | 
             
            bindir: bin
         | 
| 12 12 | 
             
            cert_chain: []
         | 
| 13 | 
            -
            date: 2023- | 
| 13 | 
            +
            date: 2023-03-27 00:00:00.000000000 Z
         | 
| 14 14 | 
             
            dependencies:
         | 
| 15 15 | 
             
            - !ruby/object:Gem::Dependency
         | 
| 16 16 | 
             
              name: minitest
         | 
| @@ -44,16 +44,16 @@ dependencies: | |
| 44 44 | 
             
              name: rake-compiler-dock
         | 
| 45 45 | 
             
              requirement: !ruby/object:Gem::Requirement
         | 
| 46 46 | 
             
                requirements:
         | 
| 47 | 
            -
                - -  | 
| 47 | 
            +
                - - '='
         | 
| 48 48 | 
             
                  - !ruby/object:Gem::Version
         | 
| 49 | 
            -
                    version: 1. | 
| 49 | 
            +
                    version: 1.3.0
         | 
| 50 50 | 
             
              type: :development
         | 
| 51 51 | 
             
              prerelease: false
         | 
| 52 52 | 
             
              version_requirements: !ruby/object:Gem::Requirement
         | 
| 53 53 | 
             
                requirements:
         | 
| 54 | 
            -
                - -  | 
| 54 | 
            +
                - - '='
         | 
| 55 55 | 
             
                  - !ruby/object:Gem::Version
         | 
| 56 | 
            -
                    version: 1. | 
| 56 | 
            +
                    version: 1.3.0
         | 
| 57 57 | 
             
            - !ruby/object:Gem::Dependency
         | 
| 58 58 | 
             
              name: rdoc
         | 
| 59 59 | 
             
              requirement: !ruby/object:Gem::Requirement
         | 
| @@ -194,9 +194,9 @@ required_ruby_version: !ruby/object:Gem::Requirement | |
| 194 194 | 
             
                  version: 3.3.dev
         | 
| 195 195 | 
             
            required_rubygems_version: !ruby/object:Gem::Requirement
         | 
| 196 196 | 
             
              requirements:
         | 
| 197 | 
            -
              - - " | 
| 197 | 
            +
              - - ">="
         | 
| 198 198 | 
             
                - !ruby/object:Gem::Version
         | 
| 199 | 
            -
                  version:  | 
| 199 | 
            +
                  version: '0'
         | 
| 200 200 | 
             
            requirements: []
         | 
| 201 201 | 
             
            rubygems_version: 3.3.26
         | 
| 202 202 | 
             
            signing_key: 
         |