Skip to content

Commit 250a2d7

Browse files
committed
rename stirling-pdf-bin -> stirling-pdf-desktop; comment out server publish (third-party already on AUR)
1 parent 62e1284 commit 250a2d7

File tree

2 files changed

+33
-33
lines changed

2 files changed

+33
-33
lines changed
Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,14 @@
11
# Maintainer: Stirling PDF Inc <contact@stirlingpdf.com>
2-
pkgname=stirling-pdf-bin
2+
pkgname=stirling-pdf-desktop
33
pkgver=2.7.3
44
pkgrel=1
5-
pkgdesc="Locally hosted, web-based PDF manipulation tool (desktop app, prebuilt binary)"
5+
pkgdesc="Locally hosted, web-based PDF manipulation tool (Tauri desktop app, official Stirling PDF Inc build)"
66
arch=('x86_64')
77
url="https://www.stirling.com"
88
license=('MIT' 'LicenseRef-Stirling-PDF-Proprietary')
99
depends=('gtk3' 'webkit2gtk' 'libappindicator-gtk3')
1010
provides=('stirling-pdf')
11-
conflicts=('stirling-pdf' 'stirling-pdf-git')
11+
conflicts=('stirling-pdf' 'stirling-pdf-git' 'stirling-pdf-bin')
1212
options=('!strip')
1313

1414
source_x86_64=("${pkgname}-${pkgver}.deb::https://github.com/Stirling-Tools/Stirling-PDF/releases/download/v${pkgver}/Stirling-PDF-linux-x86_64.deb")

.github/workflows/aur-publish.yml

Lines changed: 30 additions & 30 deletions
Original file line numberDiff line numberDiff line change
@@ -77,52 +77,52 @@ jobs:
7777
- name: Checkout repository (for PKGBUILD templates)
7878
uses: actions/checkout@v4
7979

80-
- name: Update stirling-pdf-bin PKGBUILD
80+
- name: Update stirling-pdf-desktop PKGBUILD
8181
env:
8282
VERSION: ${{ needs.get-release-info.outputs.version }}
8383
DEB_SHA: ${{ needs.get-release-info.outputs.deb_sha256 }}
8484
run: |
85-
PKGBUILD=".github/aur/stirling-pdf-bin/PKGBUILD"
85+
PKGBUILD=".github/aur/stirling-pdf-desktop/PKGBUILD"
8686
sed -i "s/^pkgver=.*/pkgver=${VERSION}/" "$PKGBUILD"
8787
sed -i "s/^pkgrel=.*/pkgrel=1/" "$PKGBUILD"
8888
sed -i "s/'PLACEHOLDER_DEB_SHA256'/'${DEB_SHA}'/" "$PKGBUILD"
8989
90-
- name: Update stirling-pdf-server-bin PKGBUILD
91-
env:
92-
VERSION: ${{ needs.get-release-info.outputs.version }}
93-
JAR_SHA: ${{ needs.get-release-info.outputs.jar_sha256 }}
94-
run: |
95-
PKGBUILD=".github/aur/stirling-pdf-server-bin/PKGBUILD"
96-
sed -i "s/^pkgver=.*/pkgver=${VERSION}/" "$PKGBUILD"
97-
sed -i "s/^pkgrel=.*/pkgrel=1/" "$PKGBUILD"
98-
sed -i "s/'PLACEHOLDER_JAR_SHA256'/'${JAR_SHA}'/" "$PKGBUILD"
90+
# Disabled until we sort out the server packaging story.
91+
# The third-party stirling-pdf-bin on AUR currently covers a similar use case.
92+
# - name: Update stirling-pdf-server-bin PKGBUILD
93+
# env:
94+
# VERSION: ${{ needs.get-release-info.outputs.version }}
95+
# JAR_SHA: ${{ needs.get-release-info.outputs.jar_sha256 }}
96+
# run: |
97+
# PKGBUILD=".github/aur/stirling-pdf-server-bin/PKGBUILD"
98+
# sed -i "s/^pkgver=.*/pkgver=${VERSION}/" "$PKGBUILD"
99+
# sed -i "s/^pkgrel=.*/pkgrel=1/" "$PKGBUILD"
100+
# sed -i "s/'PLACEHOLDER_JAR_SHA256'/'${JAR_SHA}'/" "$PKGBUILD"
99101

100-
- name: Show updated PKGBUILDs (for dry-run visibility)
102+
- name: Show updated PKGBUILD (for dry-run visibility)
101103
run: |
102-
echo "--- stirling-pdf-bin PKGBUILD ---"
103-
cat .github/aur/stirling-pdf-bin/PKGBUILD
104-
echo ""
105-
echo "--- stirling-pdf-server-bin PKGBUILD ---"
106-
cat .github/aur/stirling-pdf-server-bin/PKGBUILD
104+
echo "--- stirling-pdf-desktop PKGBUILD ---"
105+
cat .github/aur/stirling-pdf-desktop/PKGBUILD
107106
108-
- name: Publish stirling-pdf-bin to AUR
107+
- name: Publish stirling-pdf-desktop to AUR
109108
if: ${{ github.event_name == 'release' || inputs.dry_run == false }}
110109
uses: KSXGitHub/github-actions-deploy-aur@2ac5a4c1d7035885d46b10e3193393be8460b6f1 # v4.1.1
111110
with:
112-
pkgname: stirling-pdf-bin
113-
pkgbuild: .github/aur/stirling-pdf-bin/PKGBUILD
111+
pkgname: stirling-pdf-desktop
112+
pkgbuild: .github/aur/stirling-pdf-desktop/PKGBUILD
114113
commit_username: Stirling PDF Inc
115114
commit_email: contact@stirlingpdf.com
116115
ssh_private_key: ${{ secrets.AUR_SSH_PRIVATE_KEY }}
117116
commit_message: "Update to v${{ needs.get-release-info.outputs.version }}"
118117

119-
- name: Publish stirling-pdf-server-bin to AUR
120-
if: ${{ github.event_name == 'release' || inputs.dry_run == false }}
121-
uses: KSXGitHub/github-actions-deploy-aur@v4.1.1
122-
with:
123-
pkgname: stirling-pdf-server-bin
124-
pkgbuild: .github/aur/stirling-pdf-server-bin/PKGBUILD
125-
commit_username: Stirling PDF Inc
126-
commit_email: contact@stirlingpdf.com
127-
ssh_private_key: ${{ secrets.AUR_SSH_PRIVATE_KEY }}
128-
commit_message: "Update to v${{ needs.get-release-info.outputs.version }}"
118+
# Disabled until we sort out the server packaging story.
119+
# - name: Publish stirling-pdf-server-bin to AUR
120+
# if: ${{ github.event_name == 'release' || inputs.dry_run == false }}
121+
# uses: KSXGitHub/github-actions-deploy-aur@v4.1.1
122+
# with:
123+
# pkgname: stirling-pdf-server-bin
124+
# pkgbuild: .github/aur/stirling-pdf-server-bin/PKGBUILD
125+
# commit_username: Stirling PDF Inc
126+
# commit_email: contact@stirlingpdf.com
127+
# ssh_private_key: ${{ secrets.AUR_SSH_PRIVATE_KEY }}
128+
# commit_message: "Update to v${{ needs.get-release-info.outputs.version }}"

0 commit comments

Comments
 (0)