Refresh packaging files with new dh-make-ruby run
Antonio Terceiro
2 years ago
0 | 0 |
.gitattributes export-ignore
|
1 | 1 |
gbp.conf export-ignore
|
2 | |
salsa-ci.yml export-ignore⏎
|
|
2 |
salsa-ci.yml export-ignore
|
22 | 22 |
[ Antonio Terceiro ]
|
23 | 23 |
* debian/watch: point at gemwatch.debian.net
|
24 | 24 |
* New upstream version 1.2.6
|
|
25 |
* Refresh packaging files with new dh-make-ruby run.
|
|
26 |
* debian/control:
|
|
27 |
- Bump Standards-Version to 4.5.1
|
|
28 |
- Point Vcs-*: at salsa
|
|
29 |
- Point Homepage: at github repository
|
|
30 |
- Add Testsuite: autopkgtest-pkg-ruby
|
|
31 |
- add Rules-Requires-Root: no
|
|
32 |
- Drop explicit dependency on ruby
|
|
33 |
* debian/upstream/metadata: added
|
|
34 |
* debian/rules: replace with new template from dh-make-ruby
|
|
35 |
- check dependencies during build
|
|
36 |
- Install using the Rubygems layout
|
25 | 37 |
|
26 | 38 |
-- Antonio Terceiro <terceiro@debian.org> Thu, 14 Jan 2021 12:01:20 -0300
|
27 | 39 |
|
4 | 4 |
Uploaders: Lucas Nussbaum <lucas@debian.org>,
|
5 | 5 |
Antonio Terceiro <terceiro@debian.org>
|
6 | 6 |
Build-Depends: debhelper-compat (= 12),
|
7 | |
gem2deb,
|
|
7 |
gem2deb (>= 1),
|
8 | 8 |
ruby-feedparser (>= 0.9.2-1~),
|
9 | 9 |
ruby-mocha,
|
10 | 10 |
ruby-rubymail,
|
11 | 11 |
ruby-test-unit
|
12 | |
Standards-Version: 3.9.7
|
13 | |
Vcs-Git: git://anonscm.debian.org/pkg-ruby-extras/feed2imap.git
|
14 | |
Vcs-Browser: https://anonscm.debian.org/cgit/pkg-ruby-extras/feed2imap.git
|
15 | |
Homepage: http://home.gna.org/feed2imap/
|
|
12 |
Standards-Version: 4.5.1
|
|
13 |
Vcs-Git: https://salsa.debian.org/ruby-team/feed2imap.git
|
|
14 |
Vcs-Browser: https://salsa.debian.org/ruby-team/feed2imap
|
|
15 |
Homepage: https://github.com/feed2imap/feed2imap
|
|
16 |
Testsuite: autopkgtest-pkg-ruby
|
16 | 17 |
XS-Ruby-Versions: all
|
|
18 |
Rules-Requires-Root: no
|
17 | 19 |
|
18 | 20 |
Package: feed2imap
|
19 | 21 |
Architecture: all
|
20 | 22 |
XB-Ruby-Versions: ${ruby:Versions}
|
21 | |
Depends: ruby | ruby-interpreter,
|
22 | |
ruby-feedparser (>= 0.8-1~),
|
23 | |
ruby-rubymail,
|
24 | |
${misc:Depends},
|
|
23 |
Depends: ${misc:Depends},
|
|
24 |
${ruby:Depends},
|
25 | 25 |
${shlibs:Depends}
|
26 | 26 |
Suggests: imap-client,
|
27 | 27 |
imap-server
|
0 | 0 |
#!/usr/bin/make -f
|
1 | |
#export DH_VERBOSE=1
|
2 | |
#
|
3 | |
# Uncomment to ignore all test failures (but the tests will run anyway)
|
4 | |
#export DH_RUBY_IGNORE_TESTS=all
|
5 | |
#
|
6 | |
# Uncomment to ignore some test failures (but the tests will run anyway).
|
7 | |
# Valid values:
|
8 | |
#export DH_RUBY_IGNORE_TESTS=ruby1.8 ruby1.9.1 require-rubygems
|
9 | |
#
|
10 | |
# If you need to specify the .gemspec (eg there is more than one)
|
11 | |
#export DH_RUBY_GEMSPEC=gem.gemspec
|
|
1 |
|
|
2 |
export GEM2DEB_TEST_RUNNER = --check-dependencies
|
|
3 |
export DH_RUBY = --gem-install
|
12 | 4 |
|
13 | 5 |
%:
|
14 | 6 |
dh $@ --buildsystem=ruby --with ruby
|
|
0 |
---
|
|
1 |
Archive: GitHub
|
|
2 |
Bug-Database: https://github.com/feed2imap/feed2imap/issues
|
|
3 |
Bug-Submit: https://github.com/feed2imap/feed2imap/issues
|
|
4 |
Changelog: https://github.com/feed2imap/feed2imap/tags
|
|
5 |
Repository: https://github.com/feed2imap/feed2imap.git
|
|
6 |
Repository-Browse: https://github.com/feed2imap/feed2imap
|