Version bump
This commit is contained in:
parent
c5a4a7bb4b
commit
705b445185
6 changed files with 80 additions and 34 deletions
|
@ -20,15 +20,14 @@ SOURCES += src/harbour-batterybuddy.cpp \
|
|||
|
||||
DISTFILES += qml/harbour-batterybuddy.qml \
|
||||
qml/cover/CoverPage.qml \
|
||||
rpm/harbour-batterybuddy.changes.in \
|
||||
rpm/harbour-batterybuddy.changes.run.in \
|
||||
rpm/harbour-batterybuddy.spec \
|
||||
rpm/harbour-batterybuddy.yaml \
|
||||
translations/*.ts \
|
||||
harbour-batterybuddy.desktop \
|
||||
qml/pages/MainPage.qml \
|
||||
qml/pages/AboutPage.qml \
|
||||
qml/pages/InfoPage.qml
|
||||
qml/pages/InfoPage.qml \
|
||||
rpm/harbour-batterybuddy.changes
|
||||
|
||||
# Begin: include sound files
|
||||
|
||||
|
|
|
@ -24,7 +24,7 @@ Page {
|
|||
|
||||
PageHeader {
|
||||
id: header
|
||||
title: qsTr("Battery Buddy")
|
||||
title: qsTr("Battery Buddy") +" v1.0"
|
||||
}
|
||||
|
||||
Column {
|
||||
|
|
|
@ -12,7 +12,7 @@
|
|||
# * date Author's Name <author's email> version-release
|
||||
# - Summary of changes
|
||||
|
||||
* Sun Apr 13 2014 Jack Tar <jack.tar@example.com> 0.0.1-1
|
||||
- Scrubbed the deck
|
||||
- Hoisted the sails
|
||||
|
||||
* Sun Jan 6 2019 Matti Viljanen <matti.viljanen@kapsi.fi> 1.0-1
|
||||
- Initial release
|
||||
- Implement battery level monitoring
|
||||
- Implement audible alerts and notifications
|
|
@ -1,25 +0,0 @@
|
|||
#!/bin/bash
|
||||
#
|
||||
# Rename this file as harbour-batterybuddy.changes.run to let mb2 automatically
|
||||
# generate changelog from well formatted Git commit messages and tag
|
||||
# annotations.
|
||||
|
||||
git-change-log
|
||||
|
||||
# Here are some basic examples how to change from the default behavior. Run
|
||||
# git-change-log --help inside the Sailfish OS SDK chroot or build engine to
|
||||
# learn all the options git-change-log accepts.
|
||||
|
||||
# Use a subset of tags
|
||||
#git-change-log --tags refs/tags/my-prefix/*
|
||||
|
||||
# Group entries by minor revision, suppress headlines for patch-level revisions
|
||||
#git-change-log --dense '/[0-9]\+\.[0-9\+$'
|
||||
|
||||
# Trim very old changes
|
||||
#git-change-log --since 2014-04-01
|
||||
#echo '[ Some changelog entries trimmed for brevity ]'
|
||||
|
||||
# Use the subjects (first lines) of tag annotations when no entry would be
|
||||
# included for a revision otherwise
|
||||
#git-change-log --auto-add-annotations
|
72
rpm/harbour-batterybuddy.spec
Normal file
72
rpm/harbour-batterybuddy.spec
Normal file
|
@ -0,0 +1,72 @@
|
|||
#
|
||||
# Do NOT Edit the Auto-generated Part!
|
||||
# Generated by: spectacle version 0.27
|
||||
#
|
||||
|
||||
Name: harbour-batterybuddy
|
||||
|
||||
# >> macros
|
||||
# << macros
|
||||
|
||||
%{!?qtc_qmake:%define qtc_qmake %qmake}
|
||||
%{!?qtc_qmake5:%define qtc_qmake5 %qmake5}
|
||||
%{!?qtc_make:%define qtc_make make}
|
||||
%{?qtc_builddir:%define _builddir %qtc_builddir}
|
||||
Summary: Battery Buddy
|
||||
# Checklist: .spec .yaml .changes AboutPage.qml
|
||||
Version: 1.0
|
||||
Release: 1
|
||||
Group: Qt/Qt
|
||||
License: LICENSE
|
||||
URL: http://example.org/
|
||||
Source0: %{name}-%{version}.tar.bz2
|
||||
Source100: harbour-batterybuddy.yaml
|
||||
Requires: sailfishsilica-qt5 >= 0.10.9
|
||||
BuildRequires: pkgconfig(sailfishapp) >= 1.0.2
|
||||
BuildRequires: pkgconfig(Qt5Core)
|
||||
BuildRequires: pkgconfig(Qt5Qml)
|
||||
BuildRequires: pkgconfig(Qt5Quick)
|
||||
BuildRequires: desktop-file-utils
|
||||
|
||||
%description
|
||||
Prolong your battery life.
|
||||
|
||||
|
||||
%prep
|
||||
%setup -q -n %{name}-%{version}
|
||||
|
||||
# >> setup
|
||||
# << setup
|
||||
|
||||
%build
|
||||
# >> build pre
|
||||
# << build pre
|
||||
|
||||
%qtc_qmake5
|
||||
|
||||
%qtc_make %{?_smp_mflags}
|
||||
|
||||
# >> build post
|
||||
# << build post
|
||||
|
||||
%install
|
||||
rm -rf %{buildroot}
|
||||
# >> install pre
|
||||
# << install pre
|
||||
%qmake5_install
|
||||
|
||||
# >> install post
|
||||
# << install post
|
||||
|
||||
desktop-file-install --delete-original \
|
||||
--dir %{buildroot}%{_datadir}/applications \
|
||||
%{buildroot}%{_datadir}/applications/*.desktop
|
||||
|
||||
%files
|
||||
%defattr(-,root,root,-)
|
||||
%{_bindir}
|
||||
%{_datadir}/%{name}
|
||||
%{_datadir}/applications/%{name}.desktop
|
||||
%{_datadir}/icons/hicolor/*/apps/%{name}.png
|
||||
# >> files
|
||||
# << files
|
|
@ -1,6 +1,6 @@
|
|||
Name: harbour-batterybuddy
|
||||
Summary: Battery Buddy
|
||||
Version: 0.1
|
||||
Version: 1.0
|
||||
Release: 1
|
||||
# The contents of the Group field should be one of the groups listed here:
|
||||
# https://github.com/mer-tools/spectacle/blob/master/data/GROUPS
|
||||
|
|
Loading…
Reference in a new issue