Showing with 66 additions and 7 deletions.
  1. +11 −4 CHANGELOG.md
  2. +24 −0 locales/config.yaml
  3. +28 −0 locales/puppetlabs-yumrepo_core.pot
  4. +2 −2 metadata.json
  5. +1 −1 spec/spec_helper_acceptance.rb
15 changes: 11 additions & 4 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,10 +2,17 @@

All notable changes to this project will be documented in this file.

## Release 0.1.0
The format is based on [Keep a Changelog](http://keepachangelog.com/en/1.0.0/) and this project adheres to [Semantic Versioning](http://semver.org).

**Features**
## [1.0.1] - 2018-08-17
### Added
- (PUP-9053) Enable localization
### Changed
- Install module on all hosts, not just default role

**Bugfixes**
## [1.0.0] - 2018-07-07
### Summary
This is the initial release of the extracted yumrepo module

**Known Issues**
[1.0.1]: https://github.com/puppetlabs/puppetlabs-yumrepo_core/compare/1.0.0...1.0.1
[1.0.0]: https://github.com/puppetlabs/puppetlabs-yumrepo_core/releases/tag/1.0.0
24 changes: 24 additions & 0 deletions locales/config.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,24 @@
# This is the project-specific configuration file for setting up
# fast_gettext for your project.
gettext:
# This is used for the name of the .pot and .po files; they will be
# called <project_name>.pot?
project_name: puppetlabs-yumrepo_core
# This is used in comments in the .pot and .po files to indicate what
# project the files belong to and should bea little more desctiptive than
# <project_name>
package_name: puppetlabs-yumrepo_core
# The locale that the default messages in the .pot file are in
default_locale: en
# The email used for sending bug reports.
bugs_address: docs@puppet.com
# The holder of the copyright.
copyright_holder: Puppet, Inc.
# This determines which comments in code should be eligible for translation.
# Any comments that start with this string will be externalized. (Leave
# empty to include all.)
comments_tag: TRANSLATOR
# Patterns for +Dir.glob+ used to find all files that might contain
# translatable content, relative to the project root directory
source_files:
- './lib/**/*.rb'
28 changes: 28 additions & 0 deletions locales/puppetlabs-yumrepo_core.pot
Original file line number Diff line number Diff line change
@@ -0,0 +1,28 @@
# SOME DESCRIPTIVE TITLE.
# Copyright (C) 2018 Puppet, Inc.
# This file is distributed under the same license as the puppetlabs-yumrepo_core package.
# FIRST AUTHOR <EMAIL@ADDRESS>, 2018.
#
#, fuzzy
msgid ""
msgstr ""
"Project-Id-Version: puppetlabs-yumrepo_core 1.0.0-2-g305863b\n"
"\n"
"Report-Msgid-Bugs-To: docs@puppet.com\n"
"POT-Creation-Date: 2018-08-17 15:26-0700\n"
"PO-Revision-Date: 2018-08-17 15:26-0700\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: \n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=INTEGER; plural=EXPRESSION;\n"

#: ../lib/puppet/provider/yumrepo/inifile.rb:185
msgid "changing mode of %{file} from %{current_mode} to %{target_mode}"
msgstr ""

#: ../lib/puppet/type/yumrepo.rb:65 ../lib/puppet/type/yumrepo.rb:81 ../lib/puppet/type/yumrepo.rb:136 ../lib/puppet/type/yumrepo.rb:160 ../lib/puppet/type/yumrepo.rb:183 ../lib/puppet/type/yumrepo.rb:307 ../lib/puppet/type/yumrepo.rb:375
msgid "Must be a valid URL"
msgstr ""
4 changes: 2 additions & 2 deletions metadata.json
Original file line number Diff line number Diff line change
@@ -1,11 +1,11 @@
{
"name": "puppetlabs-yumrepo_core",
"version": "1.0.0",
"version": "1.0.1",
"author": "Puppet Labs",
"summary": "Manage client yum repo configurations by parsing yum INI configuration files.",
"license": "Apache-2.0",
"source": "https://github.com/puppetlabs/puppetlabs-yumrepo_core",
"project_page": "https://puppet.com/docs/puppet/latest/types/yumrepo.html",
"project_page": "https://github.com/puppetlabs/puppetlabs-yumrepo_core/blob/master/README.md",
"issues_url": "https://tickets.puppetlabs.com/projects/MODULES",
"dependencies": [

Expand Down
2 changes: 1 addition & 1 deletion spec/spec_helper_acceptance.rb
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
c.before :suite do
unless ENV['BEAKER_provision'] == 'no'
run_puppet_install_helper
install_module_on(hosts_as('default'))
install_module_on(hosts)
install_module_dependencies_on(hosts)
end
end
Expand Down