Compare commits
No commits in common. "feb5d7df4dfc5b59e783da7988ac12ce704fc5f0" and "6da4a482498b55e23b51c153a6cdec7a0cb3ce16" have entirely different histories.
feb5d7df4d
...
6da4a48249
|
@ -1,5 +1,5 @@
|
||||||
puppet-strings (2.1.0-1) unstable; urgency=medium
|
puppet-strings (2.1.0-1) UNRELEASED; urgency=medium
|
||||||
|
|
||||||
* Initial release. (Closes: #915359)
|
* Initial release. (Closes: #XXXXXX)
|
||||||
|
|
||||||
-- Kienan Stewart <kienan.stewart@burntworld.ca> Sun, 02 Dec 2018 15:53:00 -0500
|
-- Kienan Stewart <kienan.stewart@burntworld.ca> Sun, 02 Dec 2018 15:53:00 -0500
|
||||||
|
|
|
@ -10,8 +10,6 @@ Build-Depends: debhelper (>= 11),
|
||||||
yard
|
yard
|
||||||
Standards-Version: 4.2.1
|
Standards-Version: 4.2.1
|
||||||
Homepage: https://github.com/puppetlabs/puppet-strings
|
Homepage: https://github.com/puppetlabs/puppet-strings
|
||||||
Vcs-Git: https://salsa.debian.org/kienan-guest/puppet-strings.git
|
|
||||||
Vcs-Browser: https://salsa.debian.org/kienan-guest/puppet-strings
|
|
||||||
XS-Ruby-Versions: all
|
XS-Ruby-Versions: all
|
||||||
|
|
||||||
Package: puppet-strings
|
Package: puppet-strings
|
||||||
|
|
|
@ -1,39 +0,0 @@
|
||||||
Description: <short summary of the patch>
|
|
||||||
TODO: Put a short summary on the line above and replace this paragraph
|
|
||||||
with a longer explanation of this change. Complete the meta-information
|
|
||||||
with other relevant fields (see below for details). To make it easier, the
|
|
||||||
information below has been extracted from the changelog. Adjust it or drop
|
|
||||||
it.
|
|
||||||
.
|
|
||||||
puppet-strings (2.1.0-1) unstable; urgency=medium
|
|
||||||
.
|
|
||||||
* Initial release. (Closes: #915359)
|
|
||||||
Author: Kienan Stewart <kienan.stewart@burntworld.ca>
|
|
||||||
Bug-Debian: https://bugs.debian.org/915359
|
|
||||||
|
|
||||||
---
|
|
||||||
The information above should follow the Patch Tagging Guidelines, please
|
|
||||||
checkout http://dep.debian.net/deps/dep3/ to learn about the format. Here
|
|
||||||
are templates for supplementary fields that you might want to add:
|
|
||||||
|
|
||||||
Origin: <vendor|upstream|other>, <url of original patch>
|
|
||||||
Bug: <url in upstream bugtracker>
|
|
||||||
Bug-Debian: https://bugs.debian.org/<bugnumber>
|
|
||||||
Bug-Ubuntu: https://launchpad.net/bugs/<bugnumber>
|
|
||||||
Forwarded: <no|not-needed|url proving that it has been forwarded>
|
|
||||||
Reviewed-By: <name and email of someone who approved the patch>
|
|
||||||
Last-Update: 2018-12-04
|
|
||||||
|
|
||||||
--- puppet-strings-2.1.0.orig/puppet-strings.gemspec
|
|
||||||
+++ puppet-strings-2.1.0/puppet-strings.gemspec
|
|
||||||
@@ -20,7 +20,9 @@ Gem::Specification.new do |s|
|
|
||||||
'LICENSE',
|
|
||||||
'README.md',
|
|
||||||
]
|
|
||||||
- s.files = `git ls-files`.split("\n") - Dir['.*', '*.gemspec']
|
|
||||||
+ #s.files = `git ls-files`.split("\n") - Dir['.*', '*.gemspec']
|
|
||||||
+ s.files = Dir.glob("{lib,misc,spec}/**/*") +
|
|
||||||
+ ['CHANGELOG.md', 'LICENSE', 'README.md', 'Rakefile', __FILE__]
|
|
||||||
|
|
||||||
s.add_runtime_dependency 'yard', '~> 0.9.5'
|
|
||||||
s.add_runtime_dependency 'rgen'
|
|
|
@ -1 +0,0 @@
|
||||||
gemspec_no_git
|
|
|
@ -3,7 +3,15 @@
|
||||||
include /usr/share/dpkg/default.mk
|
include /usr/share/dpkg/default.mk
|
||||||
|
|
||||||
export GEM2DEB_TEST_RUNNER = --check-dependencies
|
export GEM2DEB_TEST_RUNNER = --check-dependencies
|
||||||
export DH_RUBY = --gem-install
|
|
||||||
|
|
||||||
%:
|
%:
|
||||||
dh $@ --buildsystem=ruby --with ruby
|
dh $@ --buildsystem=ruby --with ruby
|
||||||
|
|
||||||
|
override_dh_auto_install:
|
||||||
|
dh_auto_install
|
||||||
|
|
||||||
|
newtarball = new$(DEB_VERSION_UPSTREAM).tar.gz
|
||||||
|
get-orig-source:
|
||||||
|
wget --continue -O $(newtarball) \
|
||||||
|
https://github.com/puppetlabs/puppet-strings/releases/v$(DEB_VERSION_UPSTREAM).tar.gz
|
||||||
|
mk-origtargz --rename $(newtarball)
|
||||||
|
|
|
@ -20,9 +20,7 @@ Gem::Specification.new do |s|
|
||||||
'LICENSE',
|
'LICENSE',
|
||||||
'README.md',
|
'README.md',
|
||||||
]
|
]
|
||||||
#s.files = `git ls-files`.split("\n") - Dir['.*', '*.gemspec']
|
s.files = `git ls-files`.split("\n") - Dir['.*', '*.gemspec']
|
||||||
s.files = Dir.glob("{lib,misc,spec}/**/*") +
|
|
||||||
['CHANGELOG.md', 'LICENSE', 'README.md', 'Rakefile', __FILE__]
|
|
||||||
|
|
||||||
s.add_runtime_dependency 'yard', '~> 0.9.5'
|
s.add_runtime_dependency 'yard', '~> 0.9.5'
|
||||||
s.add_runtime_dependency 'rgen'
|
s.add_runtime_dependency 'rgen'
|
||||||
|
|
Loading…
Reference in New Issue