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

Commit 486d17d

Browse files
authored
Merge pull request #23 from linuxserver/develop-rebrand
Change upstream endpoints to new repo (develop)
2 parents 401ad4c + a949463 commit 486d17d

8 files changed

+28
-26
lines changed

.github/workflows/external_trigger.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ jobs:
2020
echo "**** External trigger running off of develop branch. To disable this trigger, set a Github secret named \"PAUSE_EXTERNAL_TRIGGER_PLEX_META_MANAGER_DEVELOP\". ****"
2121
echo "External trigger running off of develop branch. To disable this trigger, set a Github secret named \`PAUSE_EXTERNAL_TRIGGER_PLEX_META_MANAGER_DEVELOP\`" >> $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/commits/develop" | jq -r '. | .sha' | cut -c1-8)
23+
EXT_RELEASE=$(curl -u "${{ secrets.CR_USER }}:${{ secrets.CR_PAT }}" -sX GET "https://api.github.com/repos/Kometa-Team/Kometa/commits/develop" | jq -r '. | .sha' | cut -c1-8)
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 develop"

Dockerfile

+2-2
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/commits/develop" \
31+
PMM_VERSION=$(curl -s "https://api.github.com/repos/Kometa-Team/Kometa/commits/develop" \
3232
| jq -r '. | .sha' | cut -c1-8); \
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/${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

+2-2
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/commits/develop" \
31+
PMM_VERSION=$(curl -s "https://api.github.com/repos/Kometa-Team/Kometa/commits/develop" \
3232
| jq -r '. | .sha' | cut -c1-8); \
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/${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

+5-5
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 = 'develop'
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'
@@ -531,7 +531,7 @@ pipeline {
531531
--label \"org.opencontainers.image.licenses=GPL-3.0-only\" \
532532
--label \"org.opencontainers.image.ref.name=${COMMIT_SHA}\" \
533533
--label \"org.opencontainers.image.title=Plex-meta-manager\" \
534-
--label \"org.opencontainers.image.description=[Plex-meta-manager](https://github.com/meisnate12/Plex-Meta-Manager) is a Python 3 script that can be continuously run using YAML configuration files to update on a schedule the metadata of the movies, shows, and collections in your libraries as well as automatically build collections based on various methods all detailed in the wiki.\" \
534+
--label \"org.opencontainers.image.description=[Plex-meta-manager](https://github.com/Kometa-Team/Kometa) is a Python 3 script that can be continuously run using YAML configuration files to update on a schedule the metadata of the movies, shows, and collections in your libraries as well as automatically build collections based on various methods all detailed in the wiki.\" \
535535
--no-cache --pull -t ${IMAGE}:${META_TAG} --platform=linux/amd64 \
536536
--build-arg ${BUILD_VERSION_ARG}=${EXT_RELEASE} --build-arg VERSION=\"${VERSION_TAG}\" --build-arg BUILD_DATE=${GITHUB_DATE} ."
537537
}
@@ -562,7 +562,7 @@ pipeline {
562562
--label \"org.opencontainers.image.licenses=GPL-3.0-only\" \
563563
--label \"org.opencontainers.image.ref.name=${COMMIT_SHA}\" \
564564
--label \"org.opencontainers.image.title=Plex-meta-manager\" \
565-
--label \"org.opencontainers.image.description=[Plex-meta-manager](https://github.com/meisnate12/Plex-Meta-Manager) is a Python 3 script that can be continuously run using YAML configuration files to update on a schedule the metadata of the movies, shows, and collections in your libraries as well as automatically build collections based on various methods all detailed in the wiki.\" \
565+
--label \"org.opencontainers.image.description=[Plex-meta-manager](https://github.com/Kometa-Team/Kometa) is a Python 3 script that can be continuously run using YAML configuration files to update on a schedule the metadata of the movies, shows, and collections in your libraries as well as automatically build collections based on various methods all detailed in the wiki.\" \
566566
--no-cache --pull -t ${IMAGE}:amd64-${META_TAG} --platform=linux/amd64 \
567567
--build-arg ${BUILD_VERSION_ARG}=${EXT_RELEASE} --build-arg VERSION=\"${VERSION_TAG}\" --build-arg BUILD_DATE=${GITHUB_DATE} ."
568568
}
@@ -590,7 +590,7 @@ pipeline {
590590
--label \"org.opencontainers.image.licenses=GPL-3.0-only\" \
591591
--label \"org.opencontainers.image.ref.name=${COMMIT_SHA}\" \
592592
--label \"org.opencontainers.image.title=Plex-meta-manager\" \
593-
--label \"org.opencontainers.image.description=[Plex-meta-manager](https://github.com/meisnate12/Plex-Meta-Manager) is a Python 3 script that can be continuously run using YAML configuration files to update on a schedule the metadata of the movies, shows, and collections in your libraries as well as automatically build collections based on various methods all detailed in the wiki.\" \
593+
--label \"org.opencontainers.image.description=[Plex-meta-manager](https://github.com/Kometa-Team/Kometa) is a Python 3 script that can be continuously run using YAML configuration files to update on a schedule the metadata of the movies, shows, and collections in your libraries as well as automatically build collections based on various methods all detailed in the wiki.\" \
594594
--no-cache --pull -f Dockerfile.aarch64 -t ${IMAGE}:arm64v8-${META_TAG} --platform=linux/arm64 \
595595
--build-arg ${BUILD_VERSION_ARG}=${EXT_RELEASE} --build-arg VERSION=\"${VERSION_TAG}\" --build-arg BUILD_DATE=${GITHUB_DATE} ."
596596
sh "docker tag ${IMAGE}:arm64v8-${META_TAG} ghcr.io/linuxserver/lsiodev-buildcache:arm64v8-${COMMIT_SHA}-${BUILD_NUMBER}"

README.md

+6-5
Original file line numberDiff line numberDiff line change
@@ -39,9 +39,9 @@ Find us at:
3939
[![Jenkins Build](https://img.shields.io/jenkins/build?labelColor=555555&logoColor=ffffff&style=for-the-badge&jobUrl=https%3A%2F%2Fci.linuxserver.io%2Fjob%2FDocker-Pipeline-Builders%2Fjob%2Fdocker-plex-meta-manager%2Fjob%2Fdevelop%2F&logo=jenkins)](https://ci.linuxserver.io/job/Docker-Pipeline-Builders/job/docker-plex-meta-manager/job/develop/)
4040
[![LSIO CI](https://img.shields.io/badge/dynamic/yaml?color=94398d&labelColor=555555&logoColor=ffffff&style=for-the-badge&label=CI&query=CI&url=https%3A%2F%2Fci-tests.linuxserver.io%2Flinuxserver%2Fplex-meta-manager%2Flatest%2Fci-status.yml)](https://ci-tests.linuxserver.io/linuxserver/plex-meta-manager/latest/index.html)
4141

42-
[Plex-meta-manager](https://github.com/meisnate12/Plex-Meta-Manager) is a Python 3 script that can be continuously run using YAML configuration files to update on a schedule the metadata of the movies, shows, and collections in your libraries as well as automatically build collections based on various methods all detailed in the wiki.
42+
[Plex-meta-manager](https://github.com/Kometa-Team/Kometa) is a Python 3 script that can be continuously run using YAML configuration files to update on a schedule the metadata of the movies, shows, and collections in your libraries as well as automatically build collections based on various methods all detailed in the wiki.
4343

44-
[![plex-meta-manager](https://raw.githubusercontent.com/linuxserver/docker-templates/master/linuxserver.io/img/plex-meta-manager-banner.png)](https://github.com/meisnate12/Plex-Meta-Manager)
44+
[![plex-meta-manager](https://raw.githubusercontent.com/linuxserver/docker-templates/master/linuxserver.io/img/plex-meta-manager-banner.png)](https://github.com/Kometa-Team/Kometa)
4545

4646
## Supported Architectures
4747

@@ -69,13 +69,13 @@ This image provides various versions that are available via tags. Please read th
6969

7070
## Application Setup
7171

72-
There is a [walkthrough](https://metamanager.wiki/en/latest/home/guides/docker.html#setting-up-the-initial-config-file) available to help get you up and running.
72+
There is a [walkthrough](https://kometa.wiki/en/latest/home/guides/docker.html#setting-up-the-initial-config-file) available to help get you up and running.
7373

74-
This image supports all of the environment variables listed [here](https://metamanager.wiki/en/latest/home/environmental.html) and all commandline arguments.
74+
This image supports all of the environment variables listed [here](https://kometa.wiki/en/latest/home/environmental.html) and all commandline arguments.
7575

7676
To perform a one-time run use `docker run` (or `docker-compose run`) with the `--rm` and `-e PMM_RUN=True` arguments. This will cause the container to process your config immediately instead of waiting for the scheduled time, and delete the old container after completion.
7777

78-
For more information see the [official wiki](https://metamanager.wiki).
78+
For more information see the [official wiki](https://kometa.wiki).
7979

8080
## Usage
8181

@@ -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

+3-3
Original file line numberDiff line numberDiff line change
@@ -9,8 +9,8 @@ ls_branch: develop
99
build_armhf: false
1010
repo_vars:
1111
- EXT_GIT_BRANCH = 'develop'
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'
@@ -29,4 +29,4 @@ repo_vars:
2929
- CI_AUTH=''
3030
- CI_WEBPATH=''
3131
sponsor_links:
32-
- { name: "Plex-Meta-Manager", url: "https://github.com/sponsors/meisnate12" }
32+
- { name: "Kometa", url: "https://github.com/sponsors/meisnate12" }

readme-vars.yml

+8-7
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
# project information
44
project_name: plex-meta-manager
5-
project_url: "https://github.com/meisnate12/Plex-Meta-Manager"
5+
project_url: "https://github.com/Kometa-Team/Kometa"
66
project_logo: "https://raw.githubusercontent.com/linuxserver/docker-templates/master/linuxserver.io/img/plex-meta-manager-banner.png"
77
project_blurb: "[{{ project_name|capitalize }}]({{ project_url }}) is a Python 3 script that can be continuously run using YAML configuration files to update on a schedule the metadata of the movies, shows, and collections in your libraries as well as automatically build collections based on various methods all detailed in the wiki."
88
project_lsio_github_repo_url: "https://github.com/linuxserver/docker-{{ project_name }}"
@@ -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
@@ -51,16 +51,17 @@ optional_block_1: false
5151
# application setup block
5252
app_setup_block_enabled: true
5353
app_setup_block: |
54-
There is a [walkthrough](https://metamanager.wiki/en/latest/home/guides/docker.html#setting-up-the-initial-config-file) available to help get you up and running.
54+
There is a [walkthrough](https://kometa.wiki/en/latest/home/guides/docker.html#setting-up-the-initial-config-file) available to help get you up and running.
5555
56-
This image supports all of the environment variables listed [here](https://metamanager.wiki/en/latest/home/environmental.html) and all commandline arguments.
56+
This image supports all of the environment variables listed [here](https://kometa.wiki/en/latest/home/environmental.html) and all commandline arguments.
5757
5858
To perform a one-time run use `docker run` (or `docker-compose run`) with the `--rm` and `-e PMM_RUN=True` arguments. This will cause the container to process your config immediately instead of waiting for the scheduled time, and delete the old container after completion.
5959
60-
For more information see the [official wiki](https://metamanager.wiki).
60+
For more information see the [official wiki](https://kometa.wiki).
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." }

root/donate.txt

+1-1
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
Plex-Meta-Manager: https://github.com/sponsors/meisnate12
1+
Kometa: https://github.com/sponsors/meisnate12

0 commit comments

Comments
 (0)