aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorB. Stack <bgstack15@gmail.com>2023-04-21 10:16:33 -0400
committerB. Stack <bgstack15@gmail.com>2023-04-21 10:16:33 -0400
commita280e89e24040fd7a535674a8cc10175b0a0e2f4 (patch)
treed8549bb8ff0129f9e6a9dcf00f5d7baf158f10ce
parentversion 0.13.5.2stackrpms (diff)
downloadradicaleinfcloud-a280e89e24040fd7a535674a8cc10175b0a0e2f4.tar.gz
radicaleinfcloud-a280e89e24040fd7a535674a8cc10175b0a0e2f4.tar.bz2
radicaleinfcloud-a280e89e24040fd7a535674a8cc10175b0a0e2f4.zip
add build-rpm.sh
-rw-r--r--README-stackrpms.md3
-rwxr-xr-xbuild-rpm.sh6
-rw-r--r--infcloud.spec5
3 files changed, 13 insertions, 1 deletions
diff --git a/README-stackrpms.md b/README-stackrpms.md
index f50699b..758bd25 100644
--- a/README-stackrpms.md
+++ b/README-stackrpms.md
@@ -87,3 +87,6 @@ To accomplish autologin in your browser, use developer tools to run a few javasc
* Thu Apr 20 2023 B. Stack <bgstack15@gmail.com> - 0.13.5.2stackrpms-1
- Add help and about dialogs
+
+* Fri Apr 21 2023 B. Stack <bgstack15@gmail.com> - 0.13.5.2stackrpms-2
+- Rebuild on local equipment
diff --git a/build-rpm.sh b/build-rpm.sh
new file mode 100755
index 0000000..db2d6fb
--- /dev/null
+++ b/build-rpm.sh
@@ -0,0 +1,6 @@
+#!/bin/sh
+# Startdate: 2023-04-21-6 10:03
+# Purpose: facilitate taking this repo and building an rpm locally because copr is messing up
+# Usage: run this from the git directory
+git archive stackrpms --format=tar.gz --prefix=RadicaleInfCloud-stackrpms/ > "${HOME}/rpmbuild/SOURCES/RadicaleInfCloud-stackrpms.tar.gz"
+rpmbuild -ba infcloud.spec
diff --git a/infcloud.spec b/infcloud.spec
index 05a3419..377bf60 100644
--- a/infcloud.spec
+++ b/infcloud.spec
@@ -2,7 +2,7 @@
%define pname RadicaleInfCloud
Name: infcloud
Version: 0.13.5.2stackrpms
-Release: 1%{?dist}
+Release: 2%{?dist}
Summary: Rich web client for carddav and caldav
BuildArch: noarch
@@ -46,6 +46,9 @@ ln -s %{_sysconfdir}/%{name}/cache.manifest %{buildroot}%{_datadir}/%{name}/radi
%doc README-stackrpms.md
%changelog
+* Fri Apr 21 2023 B. Stack <bgstack15@gmail.com> - 0.13.5.2stackrpms-2
+- Rebuild on local equipment
+
* Thu Apr 20 2023 B. Stack <bgstack15@gmail.com> - 0.13.5.2stackrpms-1
- Add help and about dialogs
bgstack15