Skip to content
This repository was archived by the owner on Apr 23, 2024. It is now read-only.

Commit 8c55dc6

Browse files
committed
Change upstream endpoints to new repo
1 parent a5ddfbd commit 8c55dc6

File tree

7 files changed

+15
-13
lines changed

7 files changed

+15
-13
lines changed

.github/workflows/external_trigger.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ jobs:
2020
echo "**** External trigger running off of main branch. To disable this trigger, set a Github secret named \"PAUSE_EXTERNAL_TRIGGER_PLEX_META_MANAGER_MAIN\". ****"
2121
echo "External trigger running off of main branch. To disable this trigger, set a Github secret named \`PAUSE_EXTERNAL_TRIGGER_PLEX_META_MANAGER_MAIN\`" >> $GITHUB_STEP_SUMMARY
2222
echo "**** Retrieving external version ****"
23-
EXT_RELEASE=$(curl -u "${{ secrets.CR_USER }}:${{ secrets.CR_PAT }}" -sX GET "https://api.github.com/repos/meisnate12/Plex-Meta-Manager/releases/latest" | jq -r '. | .tag_name')
23+
EXT_RELEASE=$(curl -u "${{ secrets.CR_USER }}:${{ secrets.CR_PAT }}" -sX GET "https://api.github.com/repos/Kometa-Team/Kometa/releases/latest" | jq -r '. | .tag_name')
2424
if [ -z "${EXT_RELEASE}" ] || [ "${EXT_RELEASE}" == "null" ]; then
2525
echo "**** Can't retrieve external version, exiting ****"
2626
FAILURE_REASON="Can't retrieve external version for plex-meta-manager branch main"

Dockerfile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -28,13 +28,13 @@ RUN \
2828
libxslt \
2929
python3 && \
3030
if [ -z ${PMM_VERSION+x} ]; then \
31-
PMM_VERSION=$(curl -s https://api.github.com/repos/meisnate12/Plex-Meta-Manager/releases \
31+
PMM_VERSION=$(curl -s https://api.github.com/repos/Kometa-Team/Kometa/releases \
3232
| jq -r 'first(.[]) | .tag_name'); \
3333
fi && \
3434
mkdir -p /app/pmm && \
3535
curl -o \
3636
/tmp/pmm.tar.gz -L \
37-
"https://github.com/meisnate12/Plex-Meta-Manager/archive/refs/tags/${PMM_VERSION}.tar.gz" && \
37+
"https://github.com/Kometa-Team/Kometa/archive/${PMM_VERSION}.tar.gz" && \
3838
tar xf \
3939
/tmp/pmm.tar.gz -C \
4040
/app/pmm --strip-components=1 && \

Dockerfile.aarch64

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -25,16 +25,16 @@ RUN \
2525
apk add -U --update --no-cache \
2626
grep \
2727
libjpeg \
28-
libxslt \
28+
libxslt \
2929
python3 && \
3030
if [ -z ${PMM_VERSION+x} ]; then \
31-
PMM_VERSION=$(curl -s https://api.github.com/repos/meisnate12/Plex-Meta-Manager/releases \
31+
PMM_VERSION=$(curl -s https://api.github.com/repos/Kometa-Team/Kometa/releases \
3232
| jq -r 'first(.[]) | .tag_name'); \
3333
fi && \
3434
mkdir -p /app/pmm && \
3535
curl -o \
3636
/tmp/pmm.tar.gz -L \
37-
"https://github.com/meisnate12/Plex-Meta-Manager/archive/refs/tags/${PMM_VERSION}.tar.gz" && \
37+
"https://github.com/Kometa-Team/Kometa/archive/${PMM_VERSION}.tar.gz" && \
3838
tar xf \
3939
/tmp/pmm.tar.gz -C \
4040
/app/pmm --strip-components=1 && \

Jenkinsfile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -18,8 +18,8 @@ pipeline {
1818
GITLAB_NAMESPACE=credentials('gitlab-namespace-id')
1919
DOCKERHUB_TOKEN=credentials('docker-hub-ci-pat')
2020
EXT_GIT_BRANCH = 'master'
21-
EXT_USER = 'meisnate12'
22-
EXT_REPO = 'Plex-Meta-Manager'
21+
EXT_USER = 'Kometa-Team'
22+
EXT_REPO = 'Kometa'
2323
BUILD_VERSION_ARG = 'PMM_VERSION'
2424
LS_USER = 'linuxserver'
2525
LS_REPO = 'docker-plex-meta-manager'

README.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -298,6 +298,7 @@ Once registered you can define the dockerfile to use with `-f Dockerfile.aarch64
298298

299299
## Versions
300300

301+
* **22.04.24:** - Update backend to reflect upstream repo rename.
301302
* **23.12.23:** - Rebase to Alpine 3.19.
302303
* **10.06.23:** - Rebase to Alpine 3.18, deprecate armhf.
303304
* **05.03.23:** - Add nightly branch.

jenkins-vars.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,8 +9,8 @@ ls_branch: main
99
build_armhf: false
1010
repo_vars:
1111
- EXT_GIT_BRANCH = 'master'
12-
- EXT_USER = 'meisnate12'
13-
- EXT_REPO = 'Plex-Meta-Manager'
12+
- EXT_USER = 'Kometa-Team'
13+
- EXT_REPO = 'Kometa'
1414
- BUILD_VERSION_ARG = 'PMM_VERSION'
1515
- LS_USER = 'linuxserver'
1616
- LS_REPO = 'docker-plex-meta-manager'

readme-vars.yml

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -39,9 +39,9 @@ opt_param_usage_include_env: true
3939
opt_param_env_vars:
4040
- { env_var: "PMM_CONFIG", env_value: "/config/config.yml", desc: "Specify a custom config file to use." }
4141
- { env_var: "PMM_TIME", env_value: "03:00", desc: "Comma-separated list of times to update each day. Format: `HH:MM`." }
42-
- { env_var: "PMM_RUN", env_value: "False", desc: "Set to `True` to run without the scheduler." }
43-
- { env_var: "PMM_TEST", env_value: "False", desc: "Set to `True` to run in debug mode with only collections that have `test: true`." }
44-
- { env_var: "PMM_NO_MISSING", env_value: "False", desc: "Set to `True` to run without any of the missing movie/show functions." }
42+
- { env_var: "PMM_RUN", env_value: "False", desc: "Set to `True` to run without the scheduler." }
43+
- { env_var: "PMM_TEST", env_value: "False", desc: "Set to `True` to run in debug mode with only collections that have `test: true`." }
44+
- { env_var: "PMM_NO_MISSING", env_value: "False", desc: "Set to `True` to run without any of the missing movie/show functions." }
4545
opt_param_usage_include_vols: false
4646
opt_param_usage_include_ports: false
4747
opt_param_device_map: false
@@ -61,6 +61,7 @@ app_setup_block: |
6161
6262
# changelog
6363
changelogs:
64+
- { date: "22.04.24:", desc: "Update backend to reflect upstream repo rename."}
6465
- { date: "23.12.23:", desc: "Rebase to Alpine 3.19."}
6566
- { date: "10.06.23:", desc: "Rebase to Alpine 3.18, deprecate armhf." }
6667
- { date: "05.03.23:", desc: "Add nightly branch." }

0 commit comments

Comments
 (0)