Your message dated Fri, 26 Nov 2021 16:21:39 +0000
with message-id <[email protected]>
and subject line Bug#996298: fixed in ruby-influxdb 0.8.1-1
has caused the Debian Bug report #996298,
regarding ruby-influxdb: FTBFS with ruby3.0: ERROR: Test "ruby3.0" failed:
Failure/Error: specify { expect(conf.proxy_port).to eq(8080) }
to be marked as done.
This means that you claim that the problem has been dealt with.
If this is not the case it is now your responsibility to reopen the
Bug report if necessary, and/or fix the problem forthwith.
(NB: If you are a system administrator and have no idea what this
message is talking about, this may indicate a serious mail system
misconfiguration somewhere. Please contact [email protected]
immediately.)
--
996298: https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=996298
Debian Bug Tracking System
Contact [email protected] with problems
--- Begin Message ---
Source: ruby-influxdb
Version: 0.8.0-1
Severity: serious
Justification: FTBFS
Tags: bookworm sid ftbfs
User: [email protected]
Usertags: ruby3.0
Hi,
We are about to enable building against ruby3.0 on unstable. During a test
rebuild, ruby-influxdb was found to fail to build in that situation.
To reproduce this locally, you need to install ruby-all-dev from experimental
on an unstable system or build chroot.
Relevant part (hopefully):
> Failure/Error: specify { expect(conf.proxy_port).to eq(8080) }
>
> expected: 8080
> got: nil
>
> (compared using ==)
> # ./spec/influxdb/config_spec.rb:225:in `block (3 levels) in <top
> (required)>'
>
> Finished in 0.63051 seconds (files took 1.34 seconds to load)
> 190 examples, 71 failures
>
> Failed examples:
>
> rspec ./spec/influxdb/cases/query_batch_spec.rb:98 #
> InfluxDB::Client#batch.execute with multiple queries when there is no data
> for a query should return responses for all statements
> rspec ./spec/influxdb/cases/query_batch_spec.rb:143 #
> InfluxDB::Client#batch.execute with a group by tag query should return a
> single result
> rspec ./spec/influxdb/cases/query_cluster_spec.rb:29 #
> InfluxDB::Client#create_cluster_admin with existing admin user should GET to
> create a new cluster admin
> rspec ./spec/influxdb/cases/query_cluster_spec.rb:43 #
> InfluxDB::Client#create_cluster_admin with no admin user should GET to create
> a new cluster admin
> rspec ./spec/influxdb/cases/query_cluster_spec.rb:63 #
> InfluxDB::Client#list_cluster_admins should GET a list of cluster admins
> rspec ./spec/influxdb/cases/query_cluster_spec.rb:78 #
> InfluxDB::Client#revoke_cluster_admin_privileges should GET to revoke cluster
> admin privileges from a user
> rspec ./spec/influxdb/cases/query_core_spec.rb:29 # InfluxDB::Client#query
> should handle responses with no values
> rspec ./spec/influxdb/cases/query_series_spec.rb:31 # InfluxDB::Client GET
> #list_series returns a list of all series names
> rspec ./spec/influxdb/cases/query_series_spec.rb:46 # InfluxDB::Client GET
> empty #list_series returns a empty list
> rspec ./spec/influxdb/cases/query_series_spec.rb:61 #
> InfluxDB::Client#delete_series without a where clause should GET to remove a
> database
> rspec ./spec/influxdb/cases/query_series_spec.rb:75 #
> InfluxDB::Client#delete_series with a where clause should GET to remove a
> database
> rspec ./spec/influxdb/cases/query_with_params_spec.rb:31 #
> InfluxDB::Client#query with parameters should handle responses with no values
> rspec ./spec/influxdb/cases/querying_issue_7000_spec.rb:54 #
> InfluxDB::Client#query with series with different tags (multi-line) should
> return array with 2 elements grouped by tags
> rspec ./spec/influxdb/cases/querying_issue_7000_spec.rb:110 #
> InfluxDB::Client#query with multiple series with different tags should return
> array with 4 elements grouped by name and tags
> rspec ./spec/influxdb/cases/querying_spec.rb:41 # InfluxDB::Client#query with
> single series with multiple points should return array with single hash
> containing multiple values
> rspec ./spec/influxdb/cases/querying_spec.rb:69 # InfluxDB::Client#query with
> series with different tags should return array with 2 elements grouped by tags
> rspec ./spec/influxdb/cases/querying_spec.rb:110 # InfluxDB::Client#query
> with multiple series with different tags should return array with 4 elements
> grouped by name and tags
> rspec ./spec/influxdb/cases/querying_spec.rb:135 # InfluxDB::Client#query
> with multiple series for explicit value only should return array with 2
> elements grouped by name only and no tags
> rspec ./spec/influxdb/cases/querying_spec.rb:164 # InfluxDB::Client#query
> with a block should accept a block and yield name, tags and points
> rspec ./spec/influxdb/cases/querying_spec.rb:199 # InfluxDB::Client#query
> with epoch set to seconds should return results with integer timestamp
> rspec ./spec/influxdb/cases/querying_spec.rb:222 # InfluxDB::Client#query
> with chunk_size set to 100 should set 'chunked' and 'chunk_size' parameters
> rspec ./spec/influxdb/cases/querying_spec.rb:243 # InfluxDB::Client#query
> with database should return array with single hash containing multiple values
> rspec ./spec/influxdb/cases/querying_spec.rb:275 # InfluxDB::Client multiple
> select queries with single series with multiple points should return array
> with single hash containing multiple values
> rspec ./spec/influxdb/cases/querying_spec.rb:319 # InfluxDB::Client multiple
> select queries with series with different tags should return array with 2
> elements grouped by tags
> rspec ./spec/influxdb/cases/querying_spec.rb:364 # InfluxDB::Client multiple
> select queries with a block should accept a block and yield name, tags and
> points
> rspec ./spec/influxdb/cases/retry_requests_spec.rb:43 # InfluxDB::Client
> retrying requests raises when stopped
> rspec ./spec/influxdb/cases/retry_requests_spec.rb:94 # InfluxDB::Client
> retrying requests raise an exception if the server didn't return 200
> rspec ./spec/influxdb/cases/retry_requests_spec.rb:53 # InfluxDB::Client
> retrying requests when retry is 0 raise error directly
> rspec ./spec/influxdb/cases/retry_requests_spec.rb:64 # InfluxDB::Client
> retrying requests when retry is 'n' raise error after 'n' attemps
> rspec ./spec/influxdb/cases/retry_requests_spec.rb:88 # InfluxDB::Client
> retrying requests when retry is -1 keep trying until get the connection
> rspec ./spec/influxdb/cases/show_field_keys_spec.rb:57 #
> InfluxDB::Client#show_field_keys should GET a list of field/type pairs per
> measurement
> rspec ./spec/influxdb/client_spec.rb:20 # InfluxDB::Client
> rspec ./spec/influxdb/client_spec.rb:31 # InfluxDB::Client with basic auth GET
> rspec ./spec/influxdb/client_spec.rb:36 # InfluxDB::Client with basic auth
> POST
> rspec ./spec/influxdb/client_spec.rb:43 # InfluxDB::Client#full_url returns
> String
> rspec ./spec/influxdb/client_spec.rb:47 # InfluxDB::Client#full_url escapes
> params
> rspec ./spec/influxdb/client_spec.rb:57 # InfluxDB::Client#full_url with
> prefix returns path with prefix
> rspec ./spec/influxdb/client_spec.rb:64 # InfluxDB::Client GET #ping returns
> OK
> rspec ./spec/influxdb/client_spec.rb:74 # InfluxDB::Client GET #ping with
> prefix returns OK with prefix
> rspec ./spec/influxdb/client_spec.rb:84 # InfluxDB::Client GET #version
> returns 1.1.1
> rspec ./spec/influxdb/client_spec.rb:94 # InfluxDB::Client GET #version with
> prefix returns 1.1.1 with prefix
> rspec ./spec/influxdb/client_spec.rb:117 # InfluxDB::Client Load balancing
> balance requests
> rspec ./spec/influxdb/config_spec.rb:39 # InfluxDB::Config with no database
> specified is expected to eq ["host"]
> rspec ./spec/influxdb/config_spec.rb:40 # InfluxDB::Config with no database
> specified is expected to eq "port"
> rspec ./spec/influxdb/config_spec.rb:41 # InfluxDB::Config with no database
> specified is expected to eq "username"
> rspec ./spec/influxdb/config_spec.rb:42 # InfluxDB::Config with no database
> specified is expected to eq "password"
> rspec ./spec/influxdb/config_spec.rb:43 # InfluxDB::Config with no database
> specified is expected to eq "m"
> rspec ./spec/influxdb/config_spec.rb:59 # InfluxDB::Config with both a
> database and options specified
> rspec ./spec/influxdb/config_spec.rb:60 # InfluxDB::Config with both a
> database and options specified
> rspec ./spec/influxdb/config_spec.rb:61 # InfluxDB::Config with both a
> database and options specified
> rspec ./spec/influxdb/config_spec.rb:62 # InfluxDB::Config with both a
> database and options specified
> rspec ./spec/influxdb/config_spec.rb:63 # InfluxDB::Config with both a
> database and options specified
> rspec ./spec/influxdb/config_spec.rb:64 # InfluxDB::Config with both a
> database and options specified
> rspec ./spec/influxdb/config_spec.rb:65 # InfluxDB::Config with both a
> database and options specified
> rspec ./spec/influxdb/config_spec.rb:76 # InfluxDB::Config with ssl option
> specified is expected to be truthy
> rspec ./spec/influxdb/config_spec.rb:86 # InfluxDB::Config with multiple
> hosts specified is expected to eq ["1.1.1.1", "2.2.2.2"]
> rspec ./spec/influxdb/config_spec.rb:97 # InfluxDB::Config with auth_method
> basic auth specified is expected to eq "basic_auth"
> rspec ./spec/influxdb/config_spec.rb:103 # InfluxDB::Config with udp
> specified with params is expected to be udp
> rspec ./spec/influxdb/config_spec.rb:109 # InfluxDB::Config with udp
> specified as true is expected to be udp
> rspec ./spec/influxdb/config_spec.rb:115 # InfluxDB::Config with async
> specified with params is expected to be async
> rspec ./spec/influxdb/config_spec.rb:121 # InfluxDB::Config with async
> specified as true is expected to be async
> rspec ./spec/influxdb/config_spec.rb:127 # InfluxDB::Config with epoch
> specified as seconds is expected to eq "s"
> rspec ./spec/influxdb/config_spec.rb:134 # InfluxDB::Config given a config
> URL applies values found in URL
> rspec ./spec/influxdb/config_spec.rb:163 # InfluxDB::Config given a config
> URL UDP is expected to be udp
> rspec ./spec/influxdb/config_spec.rb:164 # InfluxDB::Config given a config
> URL UDP
> rspec ./spec/influxdb/config_spec.rb:165 # InfluxDB::Config given a config
> URL UDP is expected to equal true
> rspec ./spec/influxdb/config_spec.rb:180 # InfluxDB::Config given a config
> URL and explicit options applies values found in URL
> rspec ./spec/influxdb/config_spec.rb:189 # InfluxDB::Config given a config
> URL and explicit options applies values found in opts hash
> rspec ./spec/influxdb/config_spec.rb:195 # InfluxDB::Config given a config
> URL and explicit options applies defaults
> rspec ./spec/influxdb/config_spec.rb:224 # InfluxDB::Config given explicit
> proxy information is expected to eq "my.proxy.addr"
> rspec ./spec/influxdb/config_spec.rb:225 # InfluxDB::Config given explicit
> proxy information is expected to eq 8080
>
> Finished in 0.63051 seconds (files took 1.34 seconds to load)
> 190 examples, 71 failures
>
> Failed examples:
>
> rspec ./spec/influxdb/cases/query_batch_spec.rb:98 #
> InfluxDB::Client#batch.execute with multiple queries when there is no data
> for a query should return responses for all statements
> rspec ./spec/influxdb/cases/query_batch_spec.rb:143 #
> InfluxDB::Client#batch.execute with a group by tag query should return a
> single result
> rspec ./spec/influxdb/cases/query_cluster_spec.rb:29 #
> InfluxDB::Client#create_cluster_admin with existing admin user should GET to
> create a new cluster admin
> rspec ./spec/influxdb/cases/query_cluster_spec.rb:43 #
> InfluxDB::Client#create_cluster_admin with no admin user should GET to create
> a new cluster admin
> rspec ./spec/influxdb/cases/query_cluster_spec.rb:63 #
> InfluxDB::Client#list_cluster_admins should GET a list of cluster admins
> rspec ./spec/influxdb/cases/query_cluster_spec.rb:78 #
> InfluxDB::Client#revoke_cluster_admin_privileges should GET to revoke cluster
> admin privileges from a user
> rspec ./spec/influxdb/cases/query_core_spec.rb:29 # InfluxDB::Client#query
> should handle responses with no values
> rspec ./spec/influxdb/cases/query_series_spec.rb:31 # InfluxDB::Client GET
> #list_series returns a list of all series names
> rspec ./spec/influxdb/cases/query_series_spec.rb:46 # InfluxDB::Client GET
> empty #list_series returns a empty list
> rspec ./spec/influxdb/cases/query_series_spec.rb:61 #
> InfluxDB::Client#delete_series without a where clause should GET to remove a
> database
> rspec ./spec/influxdb/cases/query_series_spec.rb:75 #
> InfluxDB::Client#delete_series with a where clause should GET to remove a
> database
> rspec ./spec/influxdb/cases/query_with_params_spec.rb:31 #
> InfluxDB::Client#query with parameters should handle responses with no values
> rspec ./spec/influxdb/cases/querying_issue_7000_spec.rb:54 #
> InfluxDB::Client#query with series with different tags (multi-line) should
> return array with 2 elements grouped by tags
> rspec ./spec/influxdb/cases/querying_issue_7000_spec.rb:110 #
> InfluxDB::Client#query with multiple series with different tags should return
> array with 4 elements grouped by name and tags
> rspec ./spec/influxdb/cases/querying_spec.rb:41 # InfluxDB::Client#query with
> single series with multiple points should return array with single hash
> containing multiple values
> rspec ./spec/influxdb/cases/querying_spec.rb:69 # InfluxDB::Client#query with
> series with different tags should return array with 2 elements grouped by tags
> rspec ./spec/influxdb/cases/querying_spec.rb:110 # InfluxDB::Client#query
> with multiple series with different tags should return array with 4 elements
> grouped by name and tags
> rspec ./spec/influxdb/cases/querying_spec.rb:135 # InfluxDB::Client#query
> with multiple series for explicit value only should return array with 2
> elements grouped by name only and no tags
> rspec ./spec/influxdb/cases/querying_spec.rb:164 # InfluxDB::Client#query
> with a block should accept a block and yield name, tags and points
> rspec ./spec/influxdb/cases/querying_spec.rb:199 # InfluxDB::Client#query
> with epoch set to seconds should return results with integer timestamp
> rspec ./spec/influxdb/cases/querying_spec.rb:222 # InfluxDB::Client#query
> with chunk_size set to 100 should set 'chunked' and 'chunk_size' parameters
> rspec ./spec/influxdb/cases/querying_spec.rb:243 # InfluxDB::Client#query
> with database should return array with single hash containing multiple values
> rspec ./spec/influxdb/cases/querying_spec.rb:275 # InfluxDB::Client multiple
> select queries with single series with multiple points should return array
> with single hash containing multiple values
> rspec ./spec/influxdb/cases/querying_spec.rb:319 # InfluxDB::Client multiple
> select queries with series with different tags should return array with 2
> elements grouped by tags
> rspec ./spec/influxdb/cases/querying_spec.rb:364 # InfluxDB::Client multiple
> select queries with a block should accept a block and yield name, tags and
> points
> rspec ./spec/influxdb/cases/retry_requests_spec.rb:43 # InfluxDB::Client
> retrying requests raises when stopped
> rspec ./spec/influxdb/cases/retry_requests_spec.rb:94 # InfluxDB::Client
> retrying requests raise an exception if the server didn't return 200
> rspec ./spec/influxdb/cases/retry_requests_spec.rb:53 # InfluxDB::Client
> retrying requests when retry is 0 raise error directly
> rspec ./spec/influxdb/cases/retry_requests_spec.rb:64 # InfluxDB::Client
> retrying requests when retry is 'n' raise error after 'n' attemps
> rspec ./spec/influxdb/cases/retry_requests_spec.rb:88 # InfluxDB::Client
> retrying requests when retry is -1 keep trying until get the connection
> rspec ./spec/influxdb/cases/show_field_keys_spec.rb:57 #
> InfluxDB::Client#show_field_keys should GET a list of field/type pairs per
> measurement
> rspec ./spec/influxdb/client_spec.rb:20 # InfluxDB::Client
> rspec ./spec/influxdb/client_spec.rb:31 # InfluxDB::Client with basic auth GET
> rspec ./spec/influxdb/client_spec.rb:36 # InfluxDB::Client with basic auth
> POST
> rspec ./spec/influxdb/client_spec.rb:43 # InfluxDB::Client#full_url returns
> String
> rspec ./spec/influxdb/client_spec.rb:47 # InfluxDB::Client#full_url escapes
> params
> rspec ./spec/influxdb/client_spec.rb:57 # InfluxDB::Client#full_url with
> prefix returns path with prefix
> rspec ./spec/influxdb/client_spec.rb:64 # InfluxDB::Client GET #ping returns
> OK
> rspec ./spec/influxdb/client_spec.rb:74 # InfluxDB::Client GET #ping with
> prefix returns OK with prefix
> rspec ./spec/influxdb/client_spec.rb:84 # InfluxDB::Client GET #version
> returns 1.1.1
> rspec ./spec/influxdb/client_spec.rb:94 # InfluxDB::Client GET #version with
> prefix returns 1.1.1 with prefix
> rspec ./spec/influxdb/client_spec.rb:117 # InfluxDB::Client Load balancing
> balance requests
> rspec ./spec/influxdb/config_spec.rb:39 # InfluxDB::Config with no database
> specified is expected to eq ["host"]
> rspec ./spec/influxdb/config_spec.rb:40 # InfluxDB::Config with no database
> specified is expected to eq "port"
> rspec ./spec/influxdb/config_spec.rb:41 # InfluxDB::Config with no database
> specified is expected to eq "username"
> rspec ./spec/influxdb/config_spec.rb:42 # InfluxDB::Config with no database
> specified is expected to eq "password"
> rspec ./spec/influxdb/config_spec.rb:43 # InfluxDB::Config with no database
> specified is expected to eq "m"
> rspec ./spec/influxdb/config_spec.rb:59 # InfluxDB::Config with both a
> database and options specified
> rspec ./spec/influxdb/config_spec.rb:60 # InfluxDB::Config with both a
> database and options specified
> rspec ./spec/influxdb/config_spec.rb:61 # InfluxDB::Config with both a
> database and options specified
> rspec ./spec/influxdb/config_spec.rb:62 # InfluxDB::Config with both a
> database and options specified
> rspec ./spec/influxdb/config_spec.rb:63 # InfluxDB::Config with both a
> database and options specified
> rspec ./spec/influxdb/config_spec.rb:64 # InfluxDB::Config with both a
> database and options specified
> rspec ./spec/influxdb/config_spec.rb:65 # InfluxDB::Config with both a
> database and options specified
> rspec ./spec/influxdb/config_spec.rb:76 # InfluxDB::Config with ssl option
> specified is expected to be truthy
> rspec ./spec/influxdb/config_spec.rb:86 # InfluxDB::Config with multiple
> hosts specified is expected to eq ["1.1.1.1", "2.2.2.2"]
> rspec ./spec/influxdb/config_spec.rb:97 # InfluxDB::Config with auth_method
> basic auth specified is expected to eq "basic_auth"
> rspec ./spec/influxdb/config_spec.rb:103 # InfluxDB::Config with udp
> specified with params is expected to be udp
> rspec ./spec/influxdb/config_spec.rb:109 # InfluxDB::Config with udp
> specified as true is expected to be udp
> rspec ./spec/influxdb/config_spec.rb:115 # InfluxDB::Config with async
> specified with params is expected to be async
> rspec ./spec/influxdb/config_spec.rb:121 # InfluxDB::Config with async
> specified as true is expected to be async
> rspec ./spec/influxdb/config_spec.rb:127 # InfluxDB::Config with epoch
> specified as seconds is expected to eq "s"
> rspec ./spec/influxdb/config_spec.rb:134 # InfluxDB::Config given a config
> URL applies values found in URL
> rspec ./spec/influxdb/config_spec.rb:163 # InfluxDB::Config given a config
> URL UDP is expected to be udp
> rspec ./spec/influxdb/config_spec.rb:164 # InfluxDB::Config given a config
> URL UDP
> rspec ./spec/influxdb/config_spec.rb:165 # InfluxDB::Config given a config
> URL UDP is expected to equal true
> rspec ./spec/influxdb/config_spec.rb:180 # InfluxDB::Config given a config
> URL and explicit options applies values found in URL
> rspec ./spec/influxdb/config_spec.rb:189 # InfluxDB::Config given a config
> URL and explicit options applies values found in opts hash
> rspec ./spec/influxdb/config_spec.rb:195 # InfluxDB::Config given a config
> URL and explicit options applies defaults
> rspec ./spec/influxdb/config_spec.rb:224 # InfluxDB::Config given explicit
> proxy information is expected to eq "my.proxy.addr"
> rspec ./spec/influxdb/config_spec.rb:225 # InfluxDB::Config given explicit
> proxy information is expected to eq 8080
>
>
> /usr/bin/ruby3.0
> -I/usr/share/rubygems-integration/all/gems/rspec-support-3.9.3/lib:/usr/share/rubygems-integration/all/gems/rspec-core-3.9.2/lib
> /usr/share/rubygems-integration/all/gems/rspec-core-3.9.2/exe/rspec
> ./spec/influxdb/cases/query_batch_spec.rb
> ./spec/influxdb/cases/query_cluster_spec.rb
> ./spec/influxdb/cases/query_continuous_query_spec.rb
> ./spec/influxdb/cases/query_core_spec.rb
> ./spec/influxdb/cases/query_database_spec.rb
> ./spec/influxdb/cases/query_retention_policy_spec.rb
> ./spec/influxdb/cases/query_series_spec.rb
> ./spec/influxdb/cases/query_shard_spec.rb
> ./spec/influxdb/cases/query_user_spec.rb
> ./spec/influxdb/cases/query_with_params_spec.rb
> ./spec/influxdb/cases/querying_issue_7000_spec.rb
> ./spec/influxdb/cases/querying_spec.rb
> ./spec/influxdb/cases/retry_requests_spec.rb
> ./spec/influxdb/cases/show_field_keys_spec.rb
> ./spec/influxdb/cases/udp_client_spec.rb
> ./spec/influxdb/cases/write_points_spec.rb ./spec/influxdb/client_spec.rb
> ./spec/influxdb/config_spec.rb ./spec/influxdb/logging_spec.rb
> ./spec/influxdb/max_queue_spec.rb ./spec/influxdb/point_value_spec.rb
> ./spec/influxdb/query_builder_spec.rb ./spec/influxdb/time_conversion_spec.rb
> ./spec/influxdb/worker_spec.rb ./spec/smoke/smoke_batch_spec.rb
> ./spec/smoke/smoke_spec.rb --format documentation failed
> ERROR: Test "ruby3.0" failed:
The full build log is available at
https://people.debian.org/~kanashiro/ruby3.0/round2/builds/3/ruby-influxdb/ruby-influxdb_0.8.0-1+rebuild1633383387_amd64.build.txt
signature.asc
Description: PGP signature
--- End Message ---
--- Begin Message ---
Source: ruby-influxdb
Source-Version: 0.8.1-1
Done: Daniel Leidert <[email protected]>
We believe that the bug you reported is fixed in the latest version of
ruby-influxdb, which is due to be installed in the Debian FTP archive.
A summary of the changes between this version and the previous one is
attached.
Thank you for reporting the bug, which will now be closed. If you
have further comments please address them to [email protected],
and the maintainer will reopen the bug report if appropriate.
Debian distribution maintenance software
pp.
Daniel Leidert <[email protected]> (supplier of updated ruby-influxdb package)
(This message was generated automatically at their request; if you
believe that there is a problem with it please contact the archive
administrators by mailing [email protected])
-----BEGIN PGP SIGNED MESSAGE-----
Hash: SHA512
Format: 1.8
Date: Fri, 26 Nov 2021 16:53:42 +0100
Source: ruby-influxdb
Architecture: source
Version: 0.8.1-1
Distribution: unstable
Urgency: low
Maintainer: Debian Ruby Team
<[email protected]>
Changed-By: Daniel Leidert <[email protected]>
Closes: 996298
Changes:
ruby-influxdb (0.8.1-1) unstable; urgency=low
.
* Team upload to unstable.
* New upstream release.
- Adds Ruby 3.0 support (closes: #996298).
.
[ Debian Janitor ]
* Set field Upstream-Contact in debian/copyright.
* Remove obsolete fields Contact, Name from debian/upstream/metadata (already
present in machine-readable debian/copyright).
* Update watch file format version to 4.
* Bump debhelper from old 12 to 13.
* Update standards version to 4.5.1, no changes needed.
.
[ Daniel Leidert ]
* d/control (Standards-Version): Bump to 4.6.0.
(Homepage): Update URL.
(Description): Minor fix.
* d/copyright (Copyright): Add team.
* d/rules: Use gem installation layout and avoid installing bin/*.
* d/upstream/metadata: Update some URLs.
Checksums-Sha1:
13daa116c8216abf8bcc1b65b48a83a9ec13cc83 2058 ruby-influxdb_0.8.1-1.dsc
943c18ca40eddb45fd0b63f5f70323eccbc81ff1 42145 ruby-influxdb_0.8.1.orig.tar.gz
0212ae7e1bd0b1fe73658858425d042410b665da 2820
ruby-influxdb_0.8.1-1.debian.tar.xz
7ae05e5faf741677e703053571ffadbc03dae480 9527
ruby-influxdb_0.8.1-1_amd64.buildinfo
Checksums-Sha256:
87dd48d6644b8e4393e779b585c48312e1affd69bc4e597d54db7af67484fea7 2058
ruby-influxdb_0.8.1-1.dsc
7c482a11dbf87f1773513dfe6a97ee047c5628351ec531b4f0d8948f5f55efea 42145
ruby-influxdb_0.8.1.orig.tar.gz
fc91284cff96b65eb45b4a1e9cd071638e884a6f3d403aaa6f73855697730100 2820
ruby-influxdb_0.8.1-1.debian.tar.xz
385cc31d286f2c470cbb84a8705904b1fe5732279fa1180587b07c008e3139fe 9527
ruby-influxdb_0.8.1-1_amd64.buildinfo
Files:
dfe3d9d0a0bb97d58f16d643cb3b6914 2058 ruby optional ruby-influxdb_0.8.1-1.dsc
24dedf1c989bc97e65a8316691bf56d6 42145 ruby optional
ruby-influxdb_0.8.1.orig.tar.gz
eba3ef847a03fcf30c2da74bc06decf2 2820 ruby optional
ruby-influxdb_0.8.1-1.debian.tar.xz
1df1d29735ffd215a691e1825b5ccbd5 9527 ruby optional
ruby-influxdb_0.8.1-1_amd64.buildinfo
-----BEGIN PGP SIGNATURE-----
iQIzBAEBCgAdFiEEvu1N7VVEpMA+KD3HS80FZ8KW0F0FAmGhA4YACgkQS80FZ8KW
0F1org//cJvJaNbBIwOaKe0ud33/GQlkFaK9uGRW6XVOPtzZnxglVQZ3hflODIl4
SMJN0+pGnkIjKSsuf55YrRxBi5mPUGpaZmVhWxgqQOh7fDUy6GgiHnCE07+bBc1P
6ltgoTUVCXyhDoNy5u43ggrjWOtvWeyPTaJOTqUhtzaRFkkYD/cHogwT0i/LIhM6
a6A1EqzHKXZMR2Lb/VW4QOAVOYFHWsLzeFHA+TpJWDPq/l2Px9mnC7Fk2udvSznp
fp4rMI0rFeSdEaeR4y5DrebaEKzeeLAMNuhDKF7Lz5qWdYg5mpbLDYn13ngwx0jQ
Lr2EBFZEIGSmQzByQb42YbbaloRQucdnMP1PEtV2A24l6mxn9fbBVWtcBbSo5XTo
xNm6yFZqFkjf0JRIlXj+YaWXss17PMK5bsvPtmokP2ExL8pj/aVGvc12Zdt1VQK4
BdwsQQZ5ArHtddTNkhTxrsLo6SdPZgdXHpjWPzHJoe07sy0YPaV0z2aWM/Nco0Wc
7oXVvbgPbAaVqJGcpVxa1iJtjICcI/SNW2ZZcgK8fwuk+U+HEdfmT3kOuJuIUO8b
I1QaA7zxeYxezkFo4kxwSM9/xCt1/tmx9/UNWujpH5dMkYQbiQrM2IbF0ukAZ3fI
IAoCEHUxDvrNp7B35mT9b04q89pBuhEcBi+2gD0iI/vY8jt3shQ=
=Gaq4
-----END PGP SIGNATURE-----
--- End Message ---
_______________________________________________
Pkg-ruby-extras-maintainers mailing list
[email protected]
https://alioth-lists.debian.net/cgi-bin/mailman/listinfo/pkg-ruby-extras-maintainers