diff --git a/README.md b/README.md index 46baf91c..5d506d86 100644 --- a/README.md +++ b/README.md @@ -8,11 +8,9 @@ Rocky Linux 9 packages: This also builds a local repository that you can use later from `rpms/EL9-testing`. -We don't have a single target yet for Debian packages but you can build them -individually, for example: +Ubuntu 22.04 Jammy packages: - make -C debs/bionic/archivematica - make -C debs/bionic/archivematica-storage-service + make -C debs/jammy ## Using parameters @@ -23,7 +21,7 @@ may be a bit different between packages, but the most common are `BRANCH`, So in order to build a specific branch or version, this command can be used from the folder of the package we want to build: - make BRANCH=qa/1.x VERSION=1.7.0 RELEASE=rc5 + make BRANCH=qa/1.x VERSION=1.15.0 RELEASE=rc5 Keep in mind that the makefiles are a bit recursive, they will invoke Docker, mount the current folder, and run the deb-build target. diff --git a/debs/bionic/.Jenkinsci b/debs/bionic/.Jenkinsci deleted file mode 100644 index d5434dbc..00000000 --- a/debs/bionic/.Jenkinsci +++ /dev/null @@ -1,66 +0,0 @@ -pipeline { - agent { label "master" } - parameters { - string(defaultValue: 'archivematica', description: '', name: 'PACKAGE') - string(defaultValue: 'qa/1.x', description: '', name: 'BRANCH') - string(defaultValue: '', description: '', name: 'GIT_REPO') - string(defaultValue: '0F4A4D31', description: 'For production packages, use production key', name: 'GPG_ID') - string(defaultValue: '1.8.0', description: '', name: 'VERSION') - string(defaultValue: '-beta1', description: '', name: 'RELEASE') - string(defaultValue: 'qa/1.x', description: '', name: 'PACKBUILD_BRANCH') - string(defaultValue: 'jenkinsci', description: '', name: 'REPOSITORY') - } - -stages { - stage('Get code') { - steps { - script { - currentBuild.displayName = "#${BUILD_NUMBER} ${PACKAGE}" - currentBuild.description = "Branch: ${BRANCH}
Version: ${VERSION}
Release: ${RELEASE}
Repository: ${REPOSITORY}" - } - - git branch: '${PACKBUILD_BRANCH}', url: 'https://github.com/artefactual-labs/am-packbuild' - } - } - stage('Build package'){ - steps { - sh ''' - cd debs/bionic/${PACKAGE}/ - make PACKAGE=$PACKAGE BRANCH=${BRANCH} VERSION=${VERSION} RELEASE=${RELEASE} GPG_ID=${GPG_ID} - ''' - } - } - stage('Update repository'){ - steps { - sh ''' - cd debs/bionic/${PACKAGE}/ - mkdir -p /srv/repos/am-packbuild/${REPOSITORY}/bionic/ - find . -iname '*.dsc' \ - -o -iname '*.deb' \ - -o -iname '*.build' \ - -o -iname '*.changes' \ - -o -iname '*.xz' | grep -v "build-deps" | xargs -I{} cp --remove-destination {} /srv/repos/am-packbuild/${REPOSITORY}/bionic/ - make cleanup - cd /srv/repos/am-packbuild/${REPOSITORY}/bionic/ - dpkg-scanpackages . /dev/null > Packages - gzip -9c Packages > Packages.gz - - echo "Archive: bionic" > Release - echo "Origin: jenkins-ci-archivematica.org" >> Release - echo "Date: $(date -R -u)" >> Release - echo "Label: Archivematica development repo" >> Release - echo "Archivematica: amd64" >> Release - echo "SHA256:" >> Release - - printf ' '$(sha256sum Packages | cut --delimiter=' ' --fields=1)' %16d Packages\n' \ - $(wc --bytes Packages | cut --delimiter=' ' --fields=1) >> Release - printf ' '$(sha256sum Packages.gz | cut --delimiter=' ' --fields=1)' %16d Packages.gz' \ - $(wc --bytes Packages.gz | cut --delimiter=' ' --fields=1) >> Release - - rm Release.gpg || true - gpg -u 0x$GPG_ID --armor --detach-sign --output Release.gpg Release || true - ''' - } - } - } -} diff --git a/debs/bionic/acmetool/Dockerfile b/debs/bionic/acmetool/Dockerfile deleted file mode 100644 index 651a3b57..00000000 --- a/debs/bionic/acmetool/Dockerfile +++ /dev/null @@ -1,18 +0,0 @@ -FROM ubuntu:bionic - -ARG GIT_URL -ARG GIT_BRANCH -ARG PACKAGE - -RUN apt-get update && \ - apt-get upgrade -y && \ - apt-get install -y build-essential debhelper devscripts \ - dpkg-dev equivs git golang-go libcap-dev make quilt - -RUN mkdir -p /debbuild/ && cd /debbuild && \ - git config --global http.followRedirects true &&\ - git clone $GIT_URL && \ - cd $PACKAGE && \ - git checkout $GIT_BRANCH - -ADD debian /debbuild/$PACKAGE/debian diff --git a/debs/bionic/acmetool/Makefile b/debs/bionic/acmetool/Makefile deleted file mode 100644 index 6242bd1e..00000000 --- a/debs/bionic/acmetool/Makefile +++ /dev/null @@ -1,49 +0,0 @@ -NAME = acmetool -VERSION ?= 0.2.1 -RELEASE ?= 2~18.04 -GIT_URL = https://github.com/hlandau/acmetool -GPG_ID ?= 5236CA08 -DEB_TOPDIR = "/debbuild" -DOCKER_VOLUME = "/src" -DOCKER_IMAGE = "debbuild-$(NAME)-$(VERSION)" - -.PHONY: build-docker-image build deb-build deb-clean deb-test update-changelog - -all: build-docker-image build - -build-docker-image: - @echo "==> Building Docker image with build environment." - @docker build --tag "$(DOCKER_IMAGE)" --build-arg GIT_URL="$(GIT_URL)" --build-arg GIT_BRANCH="v$(VERSION)" --build-arg PACKAGE="$(NAME)" . - -update-changelog: - @echo "==> Update changelog." - @dch -v $(VERSION)-$(RELEASE) -D bionic "New upstream release" - -build: - @echo "==> Building deb." - @docker run --rm \ - -e GPG_ID=$(GPG_ID) \ - -e GPG_KEY \ - --volume "$(shell pwd):$(DOCKER_VOLUME)" $(DOCKER_IMAGE) make -C $(DOCKER_VOLUME) deb-build - -deb-build: deb-clean - @echo "===> Install gpg key" - if [ -f "$(DOCKER_VOLUME)/GPG-KEY" ]; then gpg --import $(DOCKER_VOLUME)/GPG-KEY; fi - if [ x"$$GPG_KEY" != x ]; then echo "$$GPG_KEY" | gpg --import - ; fi - @echo "==> Install dependencies." - cd /debbuild/$(NAME) && yes | mk-build-deps --install debian/control - @echo "==> Update changelog." - cd /debbuild/$(NAME) && dch -v $(VERSION)-$(RELEASE) -D bionic "New upstream release" - @echo "==> Build package." - cd /debbuild/$(NAME) && dpkg-buildpackage -k$(GPG_ID) - @echo "==> Copying built files." - mkdir -p $(DOCKER_VOLUME)/build/ - cp $(DEB_TOPDIR)/*.* $(DOCKER_VOLUME)/build/ - -deb-clean: - @echo "==> Cleaning up previous builds." - @rm -rf $(DOCKER_VOLUME)/build/ - -# TODO: Create repo and test it -deb-test: - @docker run --rm --volume="$(shell pwd):$(DOCKER_VOLUME)" ubuntu:bionic echo "Create repo and install package" diff --git a/debs/bionic/acmetool/debian/README.Debian b/debs/bionic/acmetool/debian/README.Debian deleted file mode 100644 index 2587f8b9..00000000 --- a/debs/bionic/acmetool/debian/README.Debian +++ /dev/null @@ -1,99 +0,0 @@ -acmetool for Debian -=================== - -Please refer to the User's Guide for acmetool at - -https://hlandau.github.io/acme/userguide - -The format of acmetool's state directory is described in - -/usr/share/doc/acmetool/SCHEMA.md.gz - -For a general overview of Let's Encrypt see - -https://letsencrypt.org/how-it-works/ - - -Obtaining certificates ----------------------- - -Let's Encrypt provides a staging server that may be used to obtain test -certificates, which is useful for testing your setup repeatedly without -hitting the various rate limits enforced by the production server. These -certificates are signed by a fake CA and will not validate in a browser. - -To use the staging server, create /var/lib/acme/conf/target with - -request: - provider: https://acme-staging.api.letsencrypt.org/directory - -To switch to the production server, change /var/lib/acme/conf/target to - -request: - provider: https://acme-v01.api.letsencrypt.org/directory - -When requesting certificates for the first time, acmetool registers an -account on the Let’s Encrypt server and asks for your approval of the -Let’s Encrypt Subscriber Agreement and (optionally) your email address. - -To automate account creation, create /var/lib/acme/conf/responses with - -"acme-enter-email": "user@example.com" -"acme-agreement:https://letsencrypt.org/documents/LE-SA-v1.2-November-15-2017.pdf": true - -You may specify the empty string ("") to register without email address. - -To obtain a certificate for a given set of hostnames, create a file -with an arbitrary name, e.g., /var/lib/acme/desired/example.org with - -satisfy: - names: - - example.org - - www.example.org - - -Webroot mode ------------- - -To authorize your account for the requested hostnames, acmetool must -complete one out of multiple challenges that validate your control of -each hostname. If you are not running a web server on ports 80 and 443, -acmetool by default listens on either port to answer to challenges. - -If you are already running a web server, you may use it to serve -challenge files that acmetool by default writes to the directory -/var/run/acme/acme-challenge/. Your web server on port 80 must be -configured to alias /.well-known/acme-challenge/ to the directory. - -For the apache2 web server, this alias is enabled by default. - -For the nginx web server, you may include the following snippet -for each virtual host for which you wish to obtain a certificate: - -include snippets/acmetool.conf; - - -Hook scripts ------------- - -After obtaining a certificate, acmetool runs any executable files in -the directory /etc/acme/hooks/, e.g., to reload the nginx web server: - -#!/bin/sh -[ "$1" = "live-updated" ] || exit 42 # unsupported event -systemctl reload nginx.service - - -Key permissions ---------------- - -By default, the directory /var/lib/acme/keys/ is accessible by the user -root only. For a daemon running under a non-root user, you may run - -adduser mydaemon ssl-cert - -and create a file /var/lib/acme/conf/perm with - -keys 0640 0750 root ssl-cert - -to make private keys readable to members of the group ssl-cert. diff --git a/debs/bionic/acmetool/debian/changelog b/debs/bionic/acmetool/debian/changelog deleted file mode 100644 index ac9491d7..00000000 --- a/debs/bionic/acmetool/debian/changelog +++ /dev/null @@ -1,11 +0,0 @@ -acmetool (0.2.1-2~18.04) bionic; urgency=medium - - * Use /usr/bin path instead of /bin for binary. - - -- Artefactual Sysadmin Tue, 27 Aug 2020 12:15:36 +0100 - -acmetool (0.2.1-1~18.04) bionic; urgency=medium - - * Acmetool 0.2.1 release - - -- Artefactual Sysadmin Tue, 19 Aug 2020 21:57:36 +0100 diff --git a/debs/bionic/acmetool/debian/compat b/debs/bionic/acmetool/debian/compat deleted file mode 100644 index ec635144..00000000 --- a/debs/bionic/acmetool/debian/compat +++ /dev/null @@ -1 +0,0 @@ -9 diff --git a/debs/bionic/acmetool/debian/control b/debs/bionic/acmetool/debian/control deleted file mode 100644 index 3cbe9a14..00000000 --- a/debs/bionic/acmetool/debian/control +++ /dev/null @@ -1,44 +0,0 @@ -Source: acmetool -Section: web -Priority: optional -Maintainer: Artefactual Systems Inc. -Build-Depends: debhelper (>= 10.2.3~), - golang-any, - golang-github-coreos-go-systemd-dev, - golang-golang-x-crypto-dev, - golang-golang-x-net-dev, - golang-gopkg-yaml.v2-dev | golang-yaml.v2-dev, - libcap-dev [linux-any] -Build-Depends-Arch: - libcap-dev [linux-any], -Standards-Version: 4.5.0 -Homepage: https://hlandau.github.io/acmetool -Vcs-Browser: https://salsa.debian.org/letsencrypt-team/acmetool -Vcs-Git: https://salsa.debian.org/letsencrypt-team/acmetool.git -XS-Go-Import-Path: github.com/hlandau/acmetool -Testsuite: autopkgtest-pkg-go - -Package: acmetool -Architecture: any -Depends: - ${misc:Depends}, - ${shlibs:Depends}, -Recommends: - dialog, -Description: automatic certificate acquisition tool for Let's Encrypt - acmetool is an easy-to-use command line tool for automatically - acquiring TLS certificates from ACME (Automated Certificate Management - Environment) servers such as Let's Encrypt, designed to flexibly - integrate into your webserver setup to enable automatic verification. - . - acmetool is designed to work like make: you specify what certificates - you want, and acmetool obtains certificates as necessary to satisfy - those requirements. If the requirements are already satisfied, - acmetool doesn't do anything when invoked. Thus, acmetool is - ideally suited for use on a cron job; it will do nothing until - certificates are near expiry, and then obtain new ones. - . - acmetool is designed to minimise the use of state and be transparent - in the state that it does use. All state, including certificates, is - stored in a single directory, by default /var/lib/acme. The schema - for this directory is simple, comprehensible and documented. diff --git a/debs/bionic/acmetool/debian/copyright b/debs/bionic/acmetool/debian/copyright deleted file mode 100644 index 1f3ffd29..00000000 --- a/debs/bionic/acmetool/debian/copyright +++ /dev/null @@ -1,34 +0,0 @@ -Format: http://www.debian.org/doc/packaging-manuals/copyright-format/1.0/ -Upstream-Name: github.com/hlandau/acme -Upstream-Contact: Hugo Landau -Source: https://github.com/hlandau/acme - -Files: * -Copyright: 2015-2016 Hugo Landau -License: Expat -Comment: https://github.com/hlandau/acme#licence - -Files: debian/* -Copyright: 2016 Peter Colberg -License: Expat -Comment: Debian packaging is licensed under the same terms as upstream - -License: Expat - Permission is hereby granted, free of charge, to any person obtaining - a copy of this software and associated documentation files (the - "Software"), to deal in the Software without restriction, including - without limitation the rights to use, copy, modify, merge, publish, - distribute, sublicense, and/or sell copies of the Software, and to - permit persons to whom the Software is furnished to do so, subject to - the following conditions: - . - The above copyright notice and this permission notice shall be - included in all copies or substantial portions of the Software. - . - THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, - EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF - MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND - NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE - LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION - OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION - WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. diff --git a/debs/bionic/acmetool/debian/rules b/debs/bionic/acmetool/debian/rules deleted file mode 100755 index 0e3004ef..00000000 --- a/debs/bionic/acmetool/debian/rules +++ /dev/null @@ -1,27 +0,0 @@ -#!/usr/bin/make -f - -include /usr/share/dpkg/default.mk -include /usr/share/dpkg/vendor.mk - -# Uncomment this to turn on verbose mode. -export DH_VERBOSE=1 -export GOPATH=/debbuild/acmetool - -#See https://github.com/hlandau/buildinfo -GO_LDFLAGS=-X github.com/hlandau/buildinfo.RawBuildInfo=$(shell echo -n 'acmetool $(DEB_VENDOR) version $(DEB_VERSION_UPSTREAM)' | base64) - -%: - dh $@ - -override_dh_auto_build : - go get -u -ldflags '${GO_LDFLAGS}' github.com/hlandau/acme/cmd/acmetool - -override_dh_auto_test: - -override_dh_auto_install: - mkdir -p debian/acmetool/usr/bin - cp bin/acmetool debian/acmetool/usr/bin/ - -override_dh_installman: - mkdir -p debian/acmetool/usr/share/man/man8 - bin/acmetool --help-man > debian/acmetool/usr/share/man/man8/acmetool.8 diff --git a/debs/bionic/acmetool/debian/source/format b/debs/bionic/acmetool/debian/source/format deleted file mode 100644 index 89ae9db8..00000000 --- a/debs/bionic/acmetool/debian/source/format +++ /dev/null @@ -1 +0,0 @@ -3.0 (native) diff --git a/debs/bionic/archivematica-storage-service/.dockerignore b/debs/bionic/archivematica-storage-service/.dockerignore deleted file mode 100644 index 06427d1b..00000000 --- a/debs/bionic/archivematica-storage-service/.dockerignore +++ /dev/null @@ -1,2 +0,0 @@ -/src -/repo diff --git a/debs/bionic/archivematica-storage-service/Dockerfile b/debs/bionic/archivematica-storage-service/Dockerfile deleted file mode 100644 index 67f438d3..00000000 --- a/debs/bionic/archivematica-storage-service/Dockerfile +++ /dev/null @@ -1,30 +0,0 @@ -FROM ubuntu:bionic - -ENV DEBIAN_FRONTEND noninteractive - -RUN apt-get update \ - && apt-get install -y \ - dpkg-dev \ - git \ - build-essential \ - debhelper \ - devscripts \ - equivs \ - apt-transport-https \ - python3.6-dev \ - python3.6-distutils \ - libffi-dev \ - libssl-dev \ - libxslt-dev \ - dh-systemd \ - libmysqlclient-dev \ - postgresql-server-dev-10 \ - libldap2-dev \ - libsasl2-dev \ - software-properties-common \ - && add-apt-repository ppa:jyrki-pulliainen/dh-virtualenv \ - && apt-get install -y dh-virtualenv \ - && rm -rf /var/lib/apt/lists/* \ - && update-alternatives --install /usr/bin/python python /usr/bin/python3.6 1 \ - && update-alternatives --install /usr/bin/python3 python3 /usr/bin/python3.6 1 \ - && curl -s https://bootstrap.pypa.io/pip/3.6/get-pip.py -o /tmp/get-pip.py && python /tmp/get-pip.py diff --git a/debs/bionic/archivematica-storage-service/Makefile b/debs/bionic/archivematica-storage-service/Makefile deleted file mode 100644 index 3fa576ed..00000000 --- a/debs/bionic/archivematica-storage-service/Makefile +++ /dev/null @@ -1,72 +0,0 @@ -NAME = am-packbuild -PACKAGE = archivematica-storage-service -DEB_TOPDIR = "/debbuild" -DOCKER_VOLUME = "/src" -DOCKER_IMAGE = "debbuild-$(NAME)-$(PACKAGE)-$(VERSION)" -GPG_ID ?= 0F4A4D31 -BRANCH ?= qa/0.x -VERSION ?= 0.19.0 -RELEASE ?= -1 -GIT_REPO = "https://github.com/artefactual/archivematica-storage-service" - -.DEFAULT_GOAL := build - -.PHONY: build-docker-image -build-docker-image: - @echo "==> Building Docker image with build environment." - @docker build --rm --tag "$(DOCKER_IMAGE)" . - -.PHONY: build -build: build-docker-image - @echo "==> Building deb." - @docker run \ - -e BRANCH=$(BRANCH) \ - -e VERSION=$(VERSION) \ - -e RELEASE=$(RELEASE) \ - -e PACKAGE=$(PACKAGE) \ - -e GPG_ID=$(GPG_ID) \ - -e GPG_KEY \ - -e GIT_REPO="$(GIT_REPO)" \ - --rm \ - --volume "$(shell cd ../../ && pwd):$(DEB_TOPDIR)/$(NAME)" \ - --volume "$(shell pwd):$(DOCKER_VOLUME)" \ - $(DOCKER_IMAGE) \ - make -C $(DOCKER_VOLUME) deb-build - -.PHONY: deb-build -deb-build: deb-clean git-clone import-gpg-key - @cd /debbuild/$(NAME) - ./build.sh - mkdir -p repo/ - cp -rf src/archivematica-*.* repo - cd repo && dpkg-scanpackages . | gzip > Packages.gz - -.PHONY: import-gpg-key -import-gpg-key: - @if [ -f "$(DOCKER_VOLUME)/GPG-KEY" ]; then gpg --import $(DOCKER_VOLUME)/GPG-KEY; fi - @if [ x"$$GPG_KEY" != x ]; then echo "$$GPG_KEY" | gpg --import - ; fi - -.PHONY: git-clone -git-clone: - @git clone \ - --quiet \ - --branch $(BRANCH) \ - --depth 1 \ - --single-branch \ - $(GIT_REPO) src/$(PACKAGE) - -.PHONY: deb-clean -deb-clean: - @echo "==> Cleaning up previous builds." - @rm -rf $(DOCKER_VOLUME)/repo/ - @rm -rf $(DOCKER_VOLUME)/src/ - -.PHONY: cleanup -cleanup: build-docker-image - @echo "==> Remove artifacts created as root." - @docker run -i \ - --rm \ - --volume "$(shell cd ../../ && pwd):$(DEB_TOPDIR)/$(NAME)" \ - --volume "$(shell pwd):$(DOCKER_VOLUME)" \ - $(DOCKER_IMAGE) \ - rm -rf /src/repo/ /src/src/ diff --git a/debs/bionic/archivematica-storage-service/build.sh b/debs/bionic/archivematica-storage-service/build.sh deleted file mode 100755 index cfe584d7..00000000 --- a/debs/bionic/archivematica-storage-service/build.sh +++ /dev/null @@ -1,19 +0,0 @@ -#!/usr/bin/env bash - -set -euxo - -BASE="$(pwd)" -SOURCE=${BASE}/src/archivematica-storage-service/ -export DEBFULLNAME="Artefactual Systems" -export DEBEMAIL="sysadmin@artefactual.com" -export DEB_BUILD_OPTIONS="noddebs" - -cd $SOURCE -COMMIT=$(git rev-parse HEAD) -cp -rf ${BASE}/debian-storage-service debian -yes | mk-build-deps -i debian/control -dch -v 1:${VERSION}${RELEASE}~18.04 commit: $(echo $COMMIT) -dch -v 1:${VERSION}${RELEASE}~18.04 checkout: $(echo $BRANCH) -dch -r --distribution bionic --urgency high ignored -dpkg-buildpackage -us -uc -cd $SOURCE diff --git a/debs/bionic/archivematica-storage-service/changelog.sh b/debs/bionic/archivematica-storage-service/changelog.sh deleted file mode 100755 index 2a7893c4..00000000 --- a/debs/bionic/archivematica-storage-service/changelog.sh +++ /dev/null @@ -1,10 +0,0 @@ -#!/usr/bin/env bash - -export DEBFULLNAME="Artefactual Systems" -export DEBEMAIL="sysadmin@artefactual.com" -BRANCH="$(git branch | cut -d\ -f2-)" -COMMIT=$(git rev-parse HEAD) - -dch -v 1:${VERSION}${RELEASE} commit: $(echo $COMMIT) -dch -v 1:${VERSION}${RELEASE} checkout: $(echo $BRANCH) -dch -r --distribution bionic --urgency high ignored diff --git a/debs/bionic/archivematica-storage-service/debian-storage-service/archivematica-storage-service.default b/debs/bionic/archivematica-storage-service/debian-storage-service/archivematica-storage-service.default deleted file mode 100644 index 5a32bd6b..00000000 --- a/debs/bionic/archivematica-storage-service/debian-storage-service/archivematica-storage-service.default +++ /dev/null @@ -1,14 +0,0 @@ -LANG="en_US.UTF-8" -LC_ALL="en_US.UTF-8" -LC_LANG="en_US.UTF-8" - -SS_DB_URL=mysql://archivematica:demo@localhost:3306/SS -DJANGO_ALLOWED_HOSTS=* -SS_DB_PASSWORD= -SS_DB_USER= -SS_DB_HOST= -DJANGO_SETTINGS_MODULE=storage_service.settings.production -DJANGO_SECRET_KEY=CHANGE_ME_WITH_A_SECRET_KEY -SS_GUNICORN_BIND=127.0.0.1:8001 - -REQUESTS_CA_BUNDLE=/etc/ssl/certs/ca-certificates.crt diff --git a/debs/bionic/archivematica-storage-service/debian-storage-service/archivematica-storage-service.install b/debs/bionic/archivematica-storage-service/debian-storage-service/archivematica-storage-service.install deleted file mode 100644 index 9d2eea00..00000000 --- a/debs/bionic/archivematica-storage-service/debian-storage-service/archivematica-storage-service.install +++ /dev/null @@ -1,7 +0,0 @@ -#archivematica-storage-service.install - -install/storage-service.gunicorn-config.py /etc/archivematica/ -install/storageService.logging.json /etc/archivematica/ -install/storage etc/nginx/sites-available/ -install/.storage-service var/archivematica/ -storage_service/* /usr/share/archivematica/virtualenvs/archivematica-storage-service/lib/python3.6/site-packages/storage_service/ diff --git a/debs/bionic/archivematica-storage-service/debian-storage-service/archivematica-storage-service.service b/debs/bionic/archivematica-storage-service/debian-storage-service/archivematica-storage-service.service deleted file mode 100644 index 88c22ebf..00000000 --- a/debs/bionic/archivematica-storage-service/debian-storage-service/archivematica-storage-service.service +++ /dev/null @@ -1,21 +0,0 @@ -[Unit] -Description=Archivematica Storage Service -After=network.target mysql.service -StartLimitInterval=200 -StartLimitBurst=5 - -[Service] -PIDFile=/run/archivematica-storage-service_gunicorn.pid -User=archivematica -Group=archivematica -EnvironmentFile=/etc/default/archivematica-storage-service -WorkingDirectory=/usr/lib/archivematica/storage-service/ -ExecStart=/usr/share/archivematica/virtualenvs/archivematica-storage-service/bin/gunicorn --config /etc/archivematica/storage-service.gunicorn-config.py storage_service.wsgi:application -ExecReload=/bin/kill -s HUP $MAINPID -ExecStop=/bin/kill -s TERM $MAINPID -PrivateTmp=true -Restart=always -RestartSec=30 - -[Install] -WantedBy=multi-user.target diff --git a/debs/bionic/archivematica-storage-service/debian-storage-service/changelog b/debs/bionic/archivematica-storage-service/debian-storage-service/changelog deleted file mode 100644 index 52be75d4..00000000 --- a/debs/bionic/archivematica-storage-service/debian-storage-service/changelog +++ /dev/null @@ -1,130 +0,0 @@ -archivematica-storage-service (1:0.20.0-1~18.04) bionic; urgency=high - - * commit: 9e4e5b891ba2fcc61c70aa7ec21ca5c2f1ee01a2 - * checkout: v0.20.0 - - -- Artefactual Systems Wed, 14 Jun 2023 03:55:14 +0000 - -archivematica-storage-service (1:0.19.0-1~18.04) bionic; urgency=high - - * commit: ab64d17f8220428091699870f6a14ac8dc45136b - * checkout: v0.19.0 - - -- Artefactual Systems Tue, 01 Mar 2022 18:08:06 +0000 - -archivematica-storage-service (1:0.18.1-1~18.04) bionic; urgency=high - - * commit: 0fb9d0a89524d6485e7f2fbce2ed868ebdf38f45 - * checkout: v0.18.1 - - -- Artefactual Systems Tue, 19 Oct 2021 15:08:48 +0000 - -archivematica-storage-service (1:0.18.0-1~18.04) bionic; urgency=high - - * commit: e30f9db92f4d870c21e8515480776c38c3d46e5d - * checkout: v0.18.0 - - -- Artefactual Systems Fri, 09 Jul 2021 19:02:51 +0000 - -archivematica-storage-service (1:0.17.1-1~18.04) bionic; urgency=high - - * commit: f02b9149863efe3e883806b7d470ab3c55273d03 - * checkout: v0.17.1 - - -- Artefactual Systems Thu, 07 Jan 2021 10:09:51 +0000 - -archivematica-storage-service (1:0.17.0-1~18.04) bionic; urgency=high - - * commit: 6bf42f090b779e436203d24dc76e26f4c051e73d - * checkout: v0.17.0 - - -- Artefactual Systems Tue, 06 Oct 2020 16:34:38 +0000 - -archivematica-storage-service (1:0.16.1-1~18.04) bionic; urgency=high - - * commit: 21d8ee943b5f0c4882c649a3d9b11ad2e0528b5b - * checkout: v0.16.1 - - -- Artefactual Systems Fri, 12 Jun 2020 08:47:04 +0000 - -archivematica-storage-service (1:0.16.0-1~18.04) bionic; urgency=high - - * commit: 18b9a77ce1a6789be00159289fb48f4edc46065e - * checkout: v0.16.0 - - -- Artefactual Systems Tue, 31 Mar 2020 19:17:25 +0000 - -archivematica-storage-service (1:0.15.1-1~18.04) bionic; urgency=high - - * commit: 26e473ded1db0c4a0d00e7730f5a48f136995111 - * checkout: v0.15.1 - - -- Artefactual Systems Tue, 22 Oct 2019 19:41:56 +0000 - -archivematica-storage-service (1:0.15.0-1~18.04) bionic; urgency=high - - * commit: 83d7b5a7da79c158cb99bd0e3426b92fdde0d3f0 - * checkout: stable/0.15.x - - -- Artefactual Systems Thu, 05 Sep 2019 09:51:34 +0000 - -archivematica-storage-service (1:0.14.1-1~18.04) bionic; urgency=high - - * commit: 946a513da208f96c87b00f0ae86ad011d7e9baac - * checkout: v0.14.1 - - -- Artefactual Systems Wed, 10 Apr 2019 08:08:29 +0000 - -archivematica-storage-service (1:0.14.0-1~18.04) bionic; urgency=high - - * commit: d83d383f44dd258f6ba4c1b5a879ca22270e2ae6 - * checkout: v0.14.0 - - -- Artefactual Systems Wed, 06 Mar 2019 14:14:24 +0000 - -archivematica-storage-service (1:0.13.0-1~18.04) bionic; urgency=high - - * commit: 8863492193a8f07e89fa6f1a27ad9889be4de822 - * checkout: v0.13.0 - - -- Artefactual Systems Tue, 20 Nov 2018 09:30:11 +0000 - -archivematica-storage-service (1:0.12.0-1~16.04) xenial; urgency=high - - * commit: 07ae87501b93f4c917f1c0a49dc76ba5c369039d - * checkout: v0.12.0 - - -- Artefactual Systems Tue, 11 Sep 2018 21:08:27 +0000 - -archivematica-storage-service (1:0.11.0-1~16.04) xenial; urgency=high - - * commit: 5a6ce126fec6afea9947714da30ad8533bfc5620 - * checkout: v0.11.0 - - -- Artefactual Systems Tue, 01 May 2018 21:18:57 +0000 - -archivematica-storage-service (1:0.10.1-2~16.04) trusty; urgency=high - - * commit: 1afb22aa7c05d1ba43dc531536b8e49dfe4c2da8 - * checkout: stable/0.10.x - - -- Artefactual Systems Mon, 31 Jul 2017 09:24:16 +0000 - -archivematica-storage-service (1:0.9.1-1~14.04) trusty; urgency=high - - * commit: 35e24cb7a69f1c7cfd79a8ffafdc9ccd4f8e7e35 - * checkout: v0.9.1 - - -- Artefactual Systems Wed, 24 Aug 2016 09:25:25 +0000 - -archivematica-storage-service (0.5.0.rc.4-1~precise1) precise; urgency=high - - * Archivematica Storage Service 0.5.0 release adding DuraCloud integration - - -- Justin Simpson Thu, 23 Oct 2014 15:05:34 -0700 - - archivematica-storage-service (0.4.0-1~precise1) precise; urgency=high - - * Archivematica Storage Service 0.4.0 release - - -- Justin Simpson Wed, 10 Sep 2014 18:05:34 -0700 diff --git a/debs/bionic/archivematica-storage-service/debian-storage-service/compat b/debs/bionic/archivematica-storage-service/debian-storage-service/compat deleted file mode 100644 index ec635144..00000000 --- a/debs/bionic/archivematica-storage-service/debian-storage-service/compat +++ /dev/null @@ -1 +0,0 @@ -9 diff --git a/debs/bionic/archivematica-storage-service/debian-storage-service/control b/debs/bionic/archivematica-storage-service/debian-storage-service/control deleted file mode 100644 index ca83f9cb..00000000 --- a/debs/bionic/archivematica-storage-service/debian-storage-service/control +++ /dev/null @@ -1,36 +0,0 @@ -Source: archivematica-storage-service -Section: utils -Priority: extra -Maintainer: Artefactual Systems Inc. -Build-Depends: - python3.6-dev, - debhelper, - dh-virtualenv (>= 1.2.2), - gnupg, - libmysqlclient-dev, - libffi-dev, - libssl-dev, - libxml2-dev, - libxslt-dev, - dh-systemd, - dh-virtualenv, - libldap2-dev, - libsasl2-dev, - zlib1g-dev -Standards-Version: 3.9.8 -X-Python-Version: 3.6 - -Package: archivematica-storage-service -Architecture: amd64 -Depends: - ${misc:Depends}, - nginx, - unar (>= 1.8.1-4~), - python3, - python3-distutils, - rng-tools, - gnupg1, - gettext -Description: Django webapp for managing storage in an Archivematica - installation. -Homepage: http://archivematica.org diff --git a/debs/bionic/archivematica-storage-service/debian-storage-service/dirs b/debs/bionic/archivematica-storage-service/debian-storage-service/dirs deleted file mode 100644 index 108538b4..00000000 --- a/debs/bionic/archivematica-storage-service/debian-storage-service/dirs +++ /dev/null @@ -1,3 +0,0 @@ -/usr/lib/archivematica/ -/var/archivematica/storage-service/assets -/var/log/archivematica/storage-service/ diff --git a/debs/bionic/archivematica-storage-service/debian-storage-service/postinst b/debs/bionic/archivematica-storage-service/debian-storage-service/postinst deleted file mode 100644 index 13789cde..00000000 --- a/debs/bionic/archivematica-storage-service/debian-storage-service/postinst +++ /dev/null @@ -1,50 +0,0 @@ -#!/usr/bin/env bash - -SS_ENV_DIR="/usr/share/archivematica/virtualenvs/archivematica-storage-service" - -echo "postinst called with:" $1 $2 - -echo "creating archivematica user" -userID=`id -u archivematica` - -if [ "${userID}" = 333 ]; then - echo "User archivematica exists" -else - adduser --uid 333 --group --system --home /var/lib/archivematica/ archivematica -fi - -echo "creating django secret key" -KEY=$(cat /dev/urandom | tr -dc 'a-zA-Z0-9' | fold -w 50 | head -n 1) -sed -i "s/CHANGE_ME_WITH_A_SECRET_KEY/\"$KEY\"/g" /etc/default/archivematica-storage-service - -# Use ucf to preserve user changes in the default file -ucfr archivematica-storage-service /etc/default/archivematica-storage-service -ucf --debconf-ok /etc/default/archivematica-storage-service /etc/default/archivematica-storage-service - -set -a -source /etc/default/archivematica-storage-service -set +a -echo "creating symlink in /usr/lib/archivematica" -rm -f /usr/lib/archivematica/storage-service -ln -s -f ${SS_ENV_DIR}/lib/python3.6/site-packages/storage_service/ /usr/lib/archivematica/storage-service - -find /usr/lib/archivematica/storage-service/ -name '*.pyc' -delete - -echo "configuring django database and static files" -cd /usr/lib/archivematica/storage-service -${SS_ENV_DIR}/bin/python manage.py migrate -mkdir -p /usr/lib/archivematica/storage-service/assets -${SS_ENV_DIR}/bin/python manage.py collectstatic --noinput --clear -${SS_ENV_DIR}/bin/python manage.py compilemessages -${SS_ENV_DIR}/bin/python manage.py backfill_api_keys - -echo "updating directory permissions" -chown -R archivematica:archivematica /var/archivematica/storage-service -chown -R archivematica:archivematica /var/archivematica/.storage-service -chown -R archivematica:archivematica ${SS_ENV_DIR} -mkdir -p /var/log/archivematica/storage-service -chown -R archivematica:archivematica /var/log/archivematica/storage-service - -rm -f /tmp/storage_service.log - -#DEBHELPER# diff --git a/debs/bionic/archivematica-storage-service/debian-storage-service/postrm b/debs/bionic/archivematica-storage-service/debian-storage-service/postrm deleted file mode 100644 index 7ce495c2..00000000 --- a/debs/bionic/archivematica-storage-service/debian-storage-service/postrm +++ /dev/null @@ -1,28 +0,0 @@ -#!/bin/bash - -echo "postrm" $1 - -if [ $1 = "remove" ]; then - rm -rf /usr/share/python/archivematica-storage-service - rm -rf /usr/share/archivematica/virtualenvs/archivematica-storage-service - rm -rf /var/archivematica/storage* - rm -r /etc/default/archivematica-storage-service - rm -f /tmp/storage_service.log - rm -f /etc/nginx/sites-enabled/storage - rm -f /etc/nginx/sites-available/storage - rm -f /etc/uwsgi/apps-enabled/storage.ini - rm -f /etc/uwsgi/apps-available/storage.ini - rm -rf /usr/lib/archivematica/storage* -fi - -if [ "$1" = "purge" ]; then - rm -f /etc/default/archivematica-storage-service - if which ucf >/dev/null 2>&1; then - ucf --purge /etc/default/archivematica-storage-service - ucfr --purge archivematica-storage-service /etc/default/archivematica-storage-service - fi -fi - -exit 0 - -#DEBHELPER# diff --git a/debs/bionic/archivematica-storage-service/debian-storage-service/preinst b/debs/bionic/archivematica-storage-service/debian-storage-service/preinst deleted file mode 100644 index a6fe9cc5..00000000 --- a/debs/bionic/archivematica-storage-service/debian-storage-service/preinst +++ /dev/null @@ -1,3 +0,0 @@ -#!/usr/bin/env bash - -echo "preinst" $1 $2 diff --git a/debs/bionic/archivematica-storage-service/debian-storage-service/rules b/debs/bionic/archivematica-storage-service/debian-storage-service/rules deleted file mode 100755 index cf525b2a..00000000 --- a/debs/bionic/archivematica-storage-service/debian-storage-service/rules +++ /dev/null @@ -1,18 +0,0 @@ -#!/usr/bin/make -f - -export LC_ALL=C.UTF-8 -export DH_VIRTUALENV_INSTALL_ROOT=/usr/share/archivematica/virtualenvs - -%: - dh $@ --with python-virtualenv --with systemd - -override_dh_virtualenv: - dh_virtualenv --python=python3 --requirements=requirements/production.txt --skip-install - -# See https://readthedocs.org/projects/dh-virtualenv/downloads/pdf/latest/ (2.3.3 section) -override_dh_shlibdeps: - dh_shlibdeps --exclude=psycopg2 - -# See https://readthedocs.org/projects/dh-virtualenv/downloads/pdf/latest/ (2.3.3 section) -override_dh_strip: - dh_strip --exclude=psycopg2 diff --git a/debs/bionic/archivematica-storage-service/debian-storage-service/source/format b/debs/bionic/archivematica-storage-service/debian-storage-service/source/format deleted file mode 100644 index 89ae9db8..00000000 --- a/debs/bionic/archivematica-storage-service/debian-storage-service/source/format +++ /dev/null @@ -1 +0,0 @@ -3.0 (native) diff --git a/debs/bionic/archivematica/.dockerignore b/debs/bionic/archivematica/.dockerignore deleted file mode 100644 index 06427d1b..00000000 --- a/debs/bionic/archivematica/.dockerignore +++ /dev/null @@ -1,2 +0,0 @@ -/src -/repo diff --git a/debs/bionic/archivematica/Dockerfile b/debs/bionic/archivematica/Dockerfile deleted file mode 100644 index e1f0e8ba..00000000 --- a/debs/bionic/archivematica/Dockerfile +++ /dev/null @@ -1,32 +0,0 @@ -FROM ubuntu:bionic - -ENV DEBIAN_FRONTEND noninteractive - -RUN apt-get update \ - && apt-get install -y \ - dpkg-dev \ - git \ - build-essential \ - debhelper \ - devscripts \ - equivs \ - apt-transport-https \ - python3.6-dev \ - python3.6-distutils \ - libffi-dev \ - libssl-dev \ - libxslt-dev \ - dh-systemd \ - libmysqlclient-dev \ - libldap2-dev \ - libsasl2-dev \ - && update-alternatives --install /usr/bin/python python /usr/bin/python3.6 1 \ - && update-alternatives --install /usr/bin/python3 python3 /usr/bin/python3.6 1 \ - && curl -s https://bootstrap.pypa.io/pip/3.6/get-pip.py -o /tmp/get-pip.py && python /tmp/get-pip.py \ - && curl -sL https://deb.nodesource.com/setup_8.x | bash - && apt-get install -y nodejs - -# Install recent version of dh-virtualenv. -RUN apt-get install -y software-properties-common \ - && add-apt-repository ppa:jyrki-pulliainen/dh-virtualenv \ - && apt-get update \ - && apt-get install -y dh-virtualenv diff --git a/debs/bionic/archivematica/Makefile b/debs/bionic/archivematica/Makefile deleted file mode 100644 index cd88a040..00000000 --- a/debs/bionic/archivematica/Makefile +++ /dev/null @@ -1,78 +0,0 @@ -NAME = am-packbuild -PACKAGE ?= archivematica -DEB_TOPDIR = "/debbuild" -DOCKER_VOLUME = "/src" -DOCKER_IMAGE = "debbuild-$(NAME)-$(VERSION)" -GPG_ID ?= 0F4A4D31 -BRANCH ?= qa/1.x -VERSION ?= 1.13.0 -RELEASE ?= -1 -GIT_REPO ?= "https://github.com/artefactual" -GIT_HOSTNAME := $(shell echo $(GIT_REPO) | sed -e 's/https:\/\///g' -e 's/git@//g' -e 's/\:/\//g' | cut -d\/ -f1) -SSH_SOCKET ?= $(SSH_AUTH_SOCK) - -.DEFAULT_GOAL := build - -.PHONY: build-docker-image -build-docker-image: - @echo "==> Building Docker image with build environment." - @docker build --rm --tag "$(DOCKER_IMAGE)" . - -.PHONY: build -build: build-docker-image - @echo "==> Building deb." - @docker run \ - -v $(SSH_SOCKET):"/ssh-agent" \ - -e SSH_AUTH_SOCK="/ssh-agent" \ - -e BRANCH=$(BRANCH) \ - -e VERSION=$(VERSION) \ - -e RELEASE=$(RELEASE) \ - -e GPG_ID=$(GPG_ID) \ - -e GPG_KEY \ - -e GIT_REPO="$(GIT_REPO)" \ - --rm \ - --volume "$(shell cd ../../ && pwd):$(DEB_TOPDIR)/$(NAME)" \ - --volume "$(shell pwd):$(DOCKER_VOLUME)" \ - $(DOCKER_IMAGE) \ - make -C $(DOCKER_VOLUME) deb-build - -.PHONY: deb-build -deb-build: deb-clean git-clone import-gpg-key - @cd /debbuild/$(NAME) - ./build.sh - mkdir -p repo/ - cp -rf src/archivematica_* repo - cp -rf src/archivematica/src/archivematica-* repo - cd repo && dpkg-scanpackages . | gzip > Packages.gz - -.PHONY: git-clone -git-clone: - mkdir -p ~/.ssh/ - ssh-keyscan -t rsa $(GIT_HOSTNAME) >> ~/.ssh/known_hosts || true - @git clone \ - --quiet \ - --branch $(BRANCH) \ - --depth 1 \ - --single-branch \ - $(GIT_REPO)/$(PACKAGE) src/$(PACKAGE) - -.PHONY: import-gpg-key -import-gpg-key: - @if [ -f "$(DOCKER_VOLUME)/GPG-KEY" ]; then gpg --import $(DOCKER_VOLUME)/GPG-KEY; fi - @if [ x"$$GPG_KEY" != x ]; then echo "$$GPG_KEY" | gpg --import - ; fi - -.PHONY: deb-clean -deb-clean: - @echo "==> Cleaning up previous builds." - @rm -rf $(DOCKER_VOLUME)/repo/ - @rm -rf $(DOCKER_VOLUME)/src/ - -.PHONY: cleanup -cleanup: - @echo "==> Remove artifacts created as root. " - @docker run -i \ - --rm \ - --volume "$(shell cd ../../ && pwd):$(DEB_TOPDIR)/$(NAME)" \ - --volume "$(shell pwd):$(DOCKER_VOLUME)" \ - $(DOCKER_IMAGE) \ - rm -rf /src/repo/ /src/src/ diff --git a/debs/bionic/archivematica/build.sh b/debs/bionic/archivematica/build.sh deleted file mode 100755 index 93b20c01..00000000 --- a/debs/bionic/archivematica/build.sh +++ /dev/null @@ -1,37 +0,0 @@ -#!/usr/bin/env bash - -set -euxo - -BASE="$(pwd)" -SOURCE=${BASE}/src/archivematica -export DEBFULLNAME="Artefactual Systems" -export DEBEMAIL="sysadmin@artefactual.com" -export DEB_BUILD_OPTIONS="noddebs" - -# Create archivematica package. -pushd ${SOURCE} -COMMIT=$(git rev-parse HEAD) -cp -rf ${BASE}/debian-archivematica debian -yes | mk-build-deps -i debian/control -dch -v 1:${VERSION}${RELEASE}~18.04 commit: $(echo $COMMIT) -dch -v 1:${VERSION}${RELEASE}~18.04 checkout: $(echo $BRANCH) -dch -r --distribution bionic --urgency high ignored -dpkg-buildpackage -us -uc -popd - -# Install front-end node modules. -pushd $SOURCE/src/dashboard/frontend/ -npm install --unsafe-perm -popd - -# Create child packages. -for i in dashboard MCPClient MCPServer archivematicaCommon; do - pushd "${SOURCE}/src/$i" - cp -rf $BASE/debian-$i debian - yes | mk-build-deps -i debian/control - dch -v 1:${VERSION}${RELEASE}~18.04 commit: $(echo $COMMIT) - dch -v 1:${VERSION}${RELEASE}~18.04 checkout: $(echo $BRANCH) - dch -r --distribution bionic --urgency high ignored - dpkg-buildpackage -us -uc - popd -done diff --git a/debs/bionic/archivematica/debian-MCPClient/archivematica-mcp-client.default b/debs/bionic/archivematica/debian-MCPClient/archivematica-mcp-client.default deleted file mode 100644 index b3c31bad..00000000 --- a/debs/bionic/archivematica/debian-MCPClient/archivematica-mcp-client.default +++ /dev/null @@ -1,18 +0,0 @@ -PATH=/usr/share/archivematica/virtualenvs/archivematica/bin:/usr/local/sbin:/sbin:/bin:/usr/sbin:/usr/bin:/root/bin -PYTHONPATH=/usr/lib/archivematica/MCPClient:/usr/lib/archivematica/MCPClient/clientScripts:/usr/lib/archivematica/archivematicaCommon/:/usr/share/archivematica/dashboard/ -LANG="en_US.UTF-8" -LC_ALL="en_US.UTF-8" -LC_LANG="en_US.UTF-8" - -DJANGO_SETTINGS_MODULE=settings.common - -ARCHIVEMATICA_MCPCLIENT_CLIENT_HOST=localhost -ARCHIVEMATICA_MCPCLIENT_CLIENT_DATABASE= -ARCHIVEMATICA_MCPCLIENT_CLIENT_USER= -ARCHIVEMATICA_MCPCLIENT_CLIENT_PASSWORD= - -ARCHIVEMATICA_MCPCLIENT_MCPCLIENT_ELASTICSEARCHSERVER=localhost:9200 -ARCHIVEMATICA_MCPCLIENT_MCPCLIENT_MCPARCHIVEMATICASERVER=localhost:4730 -ARCHIVEMATICA_MCPCLIENT_MCPCLIENT_CLAMAV_SERVER=/var/run/clamav/clamd.ctl - -REQUESTS_CA_BUNDLE=/etc/ssl/certs/ca-certificates.crt diff --git a/debs/bionic/archivematica/debian-MCPClient/archivematica-mcp-client.install b/debs/bionic/archivematica/debian-MCPClient/archivematica-mcp-client.install deleted file mode 100644 index 9611ca14..00000000 --- a/debs/bionic/archivematica/debian-MCPClient/archivematica-mcp-client.install +++ /dev/null @@ -1,3 +0,0 @@ -lib/* /usr/lib/archivematica/MCPClient/ -install/clientConfig.logging.json /etc/archivematica/ -install/clientConfig.conf /etc/archivematica/ diff --git a/debs/bionic/archivematica/debian-MCPClient/archivematica-mcp-client.service b/debs/bionic/archivematica/debian-MCPClient/archivematica-mcp-client.service deleted file mode 100644 index e8003191..00000000 --- a/debs/bionic/archivematica/debian-MCPClient/archivematica-mcp-client.service +++ /dev/null @@ -1,13 +0,0 @@ -[Unit] -Description=Archivematica MCPClient -After=syslog.target network.target - -[Service] -Type=simple -User=archivematica -EnvironmentFile=/etc/default/archivematica-mcp-client -Environment=PATH=/usr/share/archivematica/virtualenvs/archivematica/bin/ -ExecStart=/usr/share/archivematica/virtualenvs/archivematica/bin/python /usr/lib/archivematica/MCPClient/archivematicaClient.py - -[Install] -WantedBy=multi-user.target diff --git a/debs/bionic/archivematica/debian-MCPClient/changelog b/debs/bionic/archivematica/debian-MCPClient/changelog deleted file mode 100644 index 28d5a471..00000000 --- a/debs/bionic/archivematica/debian-MCPClient/changelog +++ /dev/null @@ -1,132 +0,0 @@ -archivematica-mcp-client (1:1.14.1-1~18.04) bionic; urgency=high - - * commit: bcdcadd19698b77f51e4552c4e899e2aa9a5b237 - * checkout: v1.14.1 - - -- Artefactual Systems Wed, 19 Jul 2023 18:09:06 +0000 - -archivematica-mcp-client (1:1.14.0-1~18.04) bionic; urgency=high - - * commit: 56388245da256fb8f5a5871874fac2f7a7c5d8e0 - * checkout: v1.14.0 - - -- Artefactual Systems Wed, 14 Jun 2023 03:53:29 +0000 - -archivematica-mcp-client (1:1.13.2-1~18.04) bionic; urgency=high - - * commit: 4f4605453d5a8796f6a739fa9664921bdb3418f2 - * checkout: v1.13.2 - - -- Artefactual Systems Mon, 13 Dec 2021 10:01:25 +0000 - -archivematica-mcp-client (1:1.13.1-1~18.04) bionic; urgency=high - - * commit: 220fbcae4dc6072fbc0e8e74cfb0a326962b21b2 - * checkout: v1.13.1 - - -- Artefactual Systems Tue, 19 Oct 2021 15:11:34 +0000 - -archivematica-mcp-client (1:1.13.0-1~18.04) bionic; urgency=high - - * commit: 2a83f0c47243881e363cb3db031e51b089c4094a - * checkout: v1.13.0 - - -- Artefactual Systems Fri, 09 Jul 2021 19:05:32 +0000 - -archivematica-mcp-client (1:1.12.1-1~18.04) bionic; urgency=high - - * commit: a31f218ceabc5bbe996775b82b9c9861b2f406d9 - * checkout: v1.12.1 - - -- Artefactual Systems Thu, 07 Jan 2021 09:59:21 +0000 - -archivematica-mcp-client (1:1.12.0-1~18.04) bionic; urgency=high - - * commit: c5e7a0fb4aaaf5d30d20e46707b66f788d7a0fba - * checkout: v1.12.0 - - -- Artefactual Systems Tue, 06 Oct 2020 16:30:05 +0000 - -archivematica-mcp-client (1:1.11.2-1~18.04) bionic; urgency=high - - * commit: 396015a44723e6b2dd2f4d7bed1443514a429c12 - * checkout: v1.11.2 - - -- Artefactual Systems Fri, 12 Jun 2020 08:26:12 +0000 - -archivematica-mcp-client (1:1.11.0-1~18.04) bionic; urgency=high - - * commit: 3e52494735ebfeb0cabc477d95d692034f4b3142 - * checkout: v1.11.0 - - -- Artefactual Systems Tue, 31 Mar 2020 15:43:24 +0000 - -archivematica-mcp-client (1:1.10.1-1~18.04) bionic; urgency=high - - * commit: ef3af9fb58ac700dfca2a350095ef13a0c396e9c - * checkout: v1.10.1 - - -- Artefactual Systems Tue, 22 Oct 2019 19:37:41 +0000 - -archivematica-mcp-client (1:1.10.0-2~18.04) bionic; urgency=high - - * commit: 862c4cdd780f1a235f20716d8472d34d9b56094f - * checkout: stable/1.10.x - - -- Artefactual Systems Mon, 30 Sep 2019 08:42:25 +0000 - -archivematica-mcp-client (1:1.10.0-1~18.04) bionic; urgency=high - - * commit: 862c4cdd780f1a235f20716d8472d34d9b56094f - * checkout: stable/1.10.x - - -- Artefactual Systems Thu, 05 Sep 2019 09:53:31 +0000 - -archivematica-mcp-client (1:1.9.1-1~18.04) bionic; urgency=high - - * commit: 84661775836cf8037ad3b48feb8e02bb80335f0f - * checkout: v1.9.1 - - -- Artefactual Systems Tue, 09 Apr 2019 20:37:02 +0000 - -archivematica-mcp-client (1:1.9.0-1~18.04) bionic; urgency=high - - * commit: a67d9d30832a313e49a8242d869739690b35e86c - * checkout: v1.9.0 - - -- Artefactual Systems Wed, 06 Mar 2019 15:14:09 +0000 - -archivematica-mcp-client (1:1.8.1-1~18.04) bionic; urgency=high - - * commit: e240825332b76f3cc50b66646921fd9b1ab84d4b - * checkout: v1.8.1 - - -- Artefactual Systems Wed, 09 Jan 2019 18:04:25 +0000 - -archivematica-mcp-client (1:1.8.0-1~18.04) bionic; urgency=high - - * commit: 707e9332f0bebf4c32def012e30752314a207d48 - * checkout: v1.8.0 - - -- Artefactual Systems Tue, 20 Nov 2018 10:40:32 +0000 - -archivematica-mcp-client (1:1.7.2-1~16.04) xenial; urgency=high - - * commit: 26a261c4e4c43cdf091ddf1a027657b9ac8fffaa - * checkout: v1.7.2 - - -- Artefactual Systems Tue, 11 Sep 2018 21:04:52 +0000 - -archivematica-mcp-client (1:1.7.0-1~16.04) xenial; urgency=high - - * commit: 353fb054bfed3cce09cc10e08068712aba2219fb - * checkout: v1.7.0 - - -- Artefactual Systems Tue, 01 May 2018 21:11:34 +0000 - -archivematica-mcp-client (1:1.6.1-2~16.04) xenial; urgency=high - - * commit: 11e89646f2708d525ba5f19ccce9b4879b02a619 - * checkout: stable/1.6.x - - -- Artefactual Systems Mon, 31 Jul 2017 19:20:04 +0000 diff --git a/debs/bionic/archivematica/debian-MCPClient/compat b/debs/bionic/archivematica/debian-MCPClient/compat deleted file mode 100644 index ec635144..00000000 --- a/debs/bionic/archivematica/debian-MCPClient/compat +++ /dev/null @@ -1 +0,0 @@ -9 diff --git a/debs/bionic/archivematica/debian-MCPClient/control b/debs/bionic/archivematica/debian-MCPClient/control deleted file mode 100644 index f181aca3..00000000 --- a/debs/bionic/archivematica/debian-MCPClient/control +++ /dev/null @@ -1,50 +0,0 @@ -Source: archivematica-mcp-client -Section: utils -Priority: extra -Maintainer: Artefactual Systems Inc. -Build-Depends: - debhelper, - dh-systemd -Standards-Version: 3.9.8 -X-Python-Version: 3.6 - -Package: archivematica-mcp-client -Architecture: amd64 -Depends: - ${misc:Depends}, - archivematica-common (>= 1.13.0), - atool, - bulk-extractor, - clamav, - clamav-daemon, - ffmpeg (>= 7:3.0), - libavcodec-extra57, - fits (>= 1.1.0), - gearman, - imagemagick (>=8:6.7.7.10), - inkscape, - jhove, - libimage-exiftool-perl, - libxml2-utils, - libmysqlclient-dev, - logapp, - md5deep, - mediaconch (>= 18.03), - mediainfo, - nailgun, - nfs-common, - openjdk-8-jre-headless, - p7zip-full, - pbzip2, - postfix, - pst-utils, - rsync, - siegfried (>= 1.7), - sleuthkit, - tesseract-ocr, - tree, - ufraw, - unrar-free, - uuid -Description: Archivematica MCPClient (distributed worker) -Homepage: https://www.archivematica.org diff --git a/debs/bionic/archivematica/debian-MCPClient/postinst b/debs/bionic/archivematica/debian-MCPClient/postinst deleted file mode 100755 index be5a732b..00000000 --- a/debs/bionic/archivematica/debian-MCPClient/postinst +++ /dev/null @@ -1,24 +0,0 @@ -#!/bin/sh - -logdir=/var/log/archivematica/MCPClient -mkdir -p $logdir -chown -R archivematica:archivematica $logdir -chmod -R g+s $logdir - -# Populate default mysql config -DBPASS=$(grep "dbc_dbpass=" /etc/dbconfig-common/archivematica-mcp-server.conf| cut -d\= -f2- | tr -d \') -sed -i "s/^\(ARCHIVEMATICA_MCPCLIENT_CLIENT_PASSWORD=\).*/\1$DBPASS/g" /etc/default/archivematica-mcp-client - -DBUSER=$(grep "dbc_dbuser=" /etc/dbconfig-common/archivematica-mcp-server.conf| cut -d\= -f2- | tr -d \') -sed -i "s/^\(ARCHIVEMATICA_MCPCLIENT_CLIENT_USER=\).*/\1$DBUSER/g" /etc/default/archivematica-mcp-client - -DBNAME=$(grep "dbc_dbname=" /etc/dbconfig-common/archivematica-mcp-server.conf| cut -d\= -f2- | tr -d \') -sed -i "s/^\(ARCHIVEMATICA_MCPCLIENT_CLIENT_DATABASE=\).*/\1$DBNAME/g" /etc/default/archivematica-mcp-client - -# Use ucf to preserve user changes in the default file -ucfr archivematica-mcp-client /etc/default/archivematica-mcp-client -ucf --debconf-ok /etc/default/archivematica-mcp-client /etc/default/archivematica-mcp-client - -find /usr/lib/archivematica/MCPClient/ -name '*.pyc' -delete - -#DEBHELPER# diff --git a/debs/bionic/archivematica/debian-MCPClient/postrm b/debs/bionic/archivematica/debian-MCPClient/postrm deleted file mode 100755 index 26fef1aa..00000000 --- a/debs/bionic/archivematica/debian-MCPClient/postrm +++ /dev/null @@ -1,9 +0,0 @@ -#!/bin/sh - -if [ "$1" = "purge" ]; then - rm -f /etc/default/archivematica-mcp-client - if which ucf >/dev/null 2>&1; then - ucf --purge /etc/default/archivematica-mcp-client - ucfr --purge archivematica-mcp-client /etc/default/archivematica-mcp-client - fi -fi diff --git a/debs/bionic/archivematica/debian-MCPClient/rules b/debs/bionic/archivematica/debian-MCPClient/rules deleted file mode 100755 index 5a17f5f0..00000000 --- a/debs/bionic/archivematica/debian-MCPClient/rules +++ /dev/null @@ -1,6 +0,0 @@ -#!/usr/bin/make -f - -export LC_ALL=C.UTF-8 - -%: - dh $@ --with systemd diff --git a/debs/bionic/archivematica/debian-MCPClient/source/format b/debs/bionic/archivematica/debian-MCPClient/source/format deleted file mode 100644 index 89ae9db8..00000000 --- a/debs/bionic/archivematica/debian-MCPClient/source/format +++ /dev/null @@ -1 +0,0 @@ -3.0 (native) diff --git a/debs/bionic/archivematica/debian-MCPServer/archivematica-mcp-server.default b/debs/bionic/archivematica/debian-MCPServer/archivematica-mcp-server.default deleted file mode 100644 index 4db7864e..00000000 --- a/debs/bionic/archivematica/debian-MCPServer/archivematica-mcp-server.default +++ /dev/null @@ -1,12 +0,0 @@ -PYTHONPATH=/usr/lib/archivematica/archivematicaCommon/:/usr/share/archivematica/dashboard/ -LANG="en_US.UTF-8" -LC_ALL="en_US.UTF-8" -LC_LANG="en_US.UTF-8" - -DJANGO_SETTINGS_MODULE=settings.common -ARCHIVEMATICA_MCPSERVER_CLIENT_HOST=localhost -ARCHIVEMATICA_MCPSERVER_CLIENT_DATABASE= -ARCHIVEMATICA_MCPSERVER_CLIENT_USER= -ARCHIVEMATICA_MCPSERVER_CLIENT_PASSWORD= - -REQUESTS_CA_BUNDLE=/etc/ssl/certs/ca-certificates.crt diff --git a/debs/bionic/archivematica/debian-MCPServer/archivematica-mcp-server.install b/debs/bionic/archivematica/debian-MCPServer/archivematica-mcp-server.install deleted file mode 100644 index 111720cd..00000000 --- a/debs/bionic/archivematica/debian-MCPServer/archivematica-mcp-server.install +++ /dev/null @@ -1,3 +0,0 @@ -lib/* /usr/lib/archivematica/MCPServer/ -install/serverConfig.conf /etc/archivematica/ -install/serverConfig.logging.json /etc/archivematica/ diff --git a/debs/bionic/archivematica/debian-MCPServer/archivematica-mcp-server.service b/debs/bionic/archivematica/debian-MCPServer/archivematica-mcp-server.service deleted file mode 100644 index 8f18a4e2..00000000 --- a/debs/bionic/archivematica/debian-MCPServer/archivematica-mcp-server.service +++ /dev/null @@ -1,12 +0,0 @@ -[Unit] -Description=Archivematica MCPServer -After=syslog.target network.target mysql.service - -[Service] -Type=simple -User=archivematica -EnvironmentFile=/etc/default/archivematica-mcp-server -ExecStart=/usr/share/archivematica/virtualenvs/archivematica/bin/python /usr/lib/archivematica/MCPServer/archivematicaMCP.py - -[Install] -WantedBy=multi-user.target diff --git a/debs/bionic/archivematica/debian-MCPServer/changelog b/debs/bionic/archivematica/debian-MCPServer/changelog deleted file mode 100644 index 8fbeb016..00000000 --- a/debs/bionic/archivematica/debian-MCPServer/changelog +++ /dev/null @@ -1,132 +0,0 @@ -archivematica-mcp-server (1:1.14.1-1~18.04) bionic; urgency=high - - * commit: bcdcadd19698b77f51e4552c4e899e2aa9a5b237 - * checkout: v1.14.1 - - -- Artefactual Systems Wed, 19 Jul 2023 18:09:14 +0000 - -archivematica-mcp-server (1:1.14.0-1~18.04) bionic; urgency=high - - * commit: 56388245da256fb8f5a5871874fac2f7a7c5d8e0 - * checkout: v1.14.0 - - -- Artefactual Systems Wed, 14 Jun 2023 03:53:37 +0000 - -archivematica-mcp-server (1:1.13.2-1~18.04) bionic; urgency=high - - * commit: 4f4605453d5a8796f6a739fa9664921bdb3418f2 - * checkout: v1.13.2 - - -- Artefactual Systems Mon, 13 Dec 2021 10:01:33 +0000 - -archivematica-mcp-server (1:1.13.1-1~18.04) bionic; urgency=high - - * commit: 220fbcae4dc6072fbc0e8e74cfb0a326962b21b2 - * checkout: v1.13.1 - - -- Artefactual Systems Tue, 19 Oct 2021 15:11:41 +0000 - -archivematica-mcp-server (1:1.13.0-1~18.04) bionic; urgency=high - - * commit: 2a83f0c47243881e363cb3db031e51b089c4094a - * checkout: v1.13.0 - - -- Artefactual Systems Fri, 09 Jul 2021 19:05:41 +0000 - -archivematica-mcp-server (1:1.12.1-1~18.04) bionic; urgency=high - - * commit: a31f218ceabc5bbe996775b82b9c9861b2f406d9 - * checkout: v1.12.1 - - -- Artefactual Systems Thu, 07 Jan 2021 10:00:59 +0000 - -archivematica-mcp-server (1:1.12.0-1~18.04) bionic; urgency=high - - * commit: c5e7a0fb4aaaf5d30d20e46707b66f788d7a0fba - * checkout: v1.12.0 - - -- Artefactual Systems Tue, 06 Oct 2020 16:31:49 +0000 - -archivematica-mcp-server (1:1.11.2-1~18.04) bionic; urgency=high - - * commit: 396015a44723e6b2dd2f4d7bed1443514a429c12 - * checkout: v1.11.2 - - -- Artefactual Systems Fri, 12 Jun 2020 08:27:32 +0000 - -archivematica-mcp-server (1:1.11.0-1~18.04) bionic; urgency=high - - * commit: 3e52494735ebfeb0cabc477d95d692034f4b3142 - * checkout: v1.11.0 - - -- Artefactual Systems Tue, 31 Mar 2020 15:44:43 +0000 - -archivematica-mcp-server (1:1.10.1-1~18.04) bionic; urgency=high - - * commit: ef3af9fb58ac700dfca2a350095ef13a0c396e9c - * checkout: v1.10.1 - - -- Artefactual Systems Tue, 22 Oct 2019 19:38:42 +0000 - -archivematica-mcp-server (1:1.10.0-2~18.04) bionic; urgency=high - - * commit: 862c4cdd780f1a235f20716d8472d34d9b56094f - * checkout: stable/1.10.x - - -- Artefactual Systems Mon, 30 Sep 2019 08:43:24 +0000 - -archivematica-mcp-server (1:1.10.0-1~18.04) bionic; urgency=high - - * commit: 862c4cdd780f1a235f20716d8472d34d9b56094f - * checkout: stable/1.10.x - - -- Artefactual Systems Thu, 05 Sep 2019 09:54:29 +0000 - -archivematica-mcp-server (1:1.9.1-1~18.04) bionic; urgency=high - - * commit: 84661775836cf8037ad3b48feb8e02bb80335f0f - * checkout: v1.9.1 - - -- Artefactual Systems Tue, 09 Apr 2019 20:40:29 +0000 - -archivematica-mcp-server (1:1.9.0-1~18.04) bionic; urgency=high - - * commit: a67d9d30832a313e49a8242d869739690b35e86c - * checkout: v1.9.0 - - -- Artefactual Systems Wed, 06 Mar 2019 15:16:43 +0000 - -archivematica-mcp-server (1:1.8.1-1~18.04) bionic; urgency=high - - * commit: e240825332b76f3cc50b66646921fd9b1ab84d4b - * checkout: v1.8.1 - - -- Artefactual Systems Wed, 09 Jan 2019 18:10:20 +0000 - -archivematica-mcp-server (1:1.8.0-1~18.04) bionic; urgency=high - - * commit: 707e9332f0bebf4c32def012e30752314a207d48 - * checkout: v1.8.0 - - -- Artefactual Systems Tue, 20 Nov 2018 10:45:38 +0000 - -archivematica-mcp-server (1:1.7.2-1~16.04) xenial; urgency=high - - * commit: 26a261c4e4c43cdf091ddf1a027657b9ac8fffaa - * checkout: v1.7.2 - - -- Artefactual Systems Tue, 11 Sep 2018 21:06:21 +0000 - -archivematica-mcp-server (1:1.7.0-1~16.04) xenial; urgency=high - - * commit: 353fb054bfed3cce09cc10e08068712aba2219fb - * checkout: v1.7.0 - - -- Artefactual Systems Tue, 01 May 2018 21:14:13 +0000 - -archivematica-mcp-server (1:1.6.1-2~16.04) xenial; urgency=high - - * commit: 11e89646f2708d525ba5f19ccce9b4879b02a619 - * checkout: stable/1.6.x - - -- Artefactual Systems Mon, 31 Jul 2017 19:20:04 +0000 diff --git a/debs/bionic/archivematica/debian-MCPServer/compat b/debs/bionic/archivematica/debian-MCPServer/compat deleted file mode 100644 index ec635144..00000000 --- a/debs/bionic/archivematica/debian-MCPServer/compat +++ /dev/null @@ -1 +0,0 @@ -9 diff --git a/debs/bionic/archivematica/debian-MCPServer/config b/debs/bionic/archivematica/debian-MCPServer/config deleted file mode 100644 index bbb37a81..00000000 --- a/debs/bionic/archivematica/debian-MCPServer/config +++ /dev/null @@ -1,15 +0,0 @@ -#!/bin/sh -# config maintainer script for archivematica-mcp-server - -# source debconf stuff -. /usr/share/debconf/confmodule - -dbc_dbname=MCP -dbc_dbuser=archivematica -dbc_dbpass=demo - -# source dbconfig-common shell library, and call the hook function -if [ -f /usr/share/dbconfig-common/dpkg/config.mysql ]; then - . /usr/share/dbconfig-common/dpkg/config.mysql - dbc_go archivematica-mcp-server $@ -fi diff --git a/debs/bionic/archivematica/debian-MCPServer/control b/debs/bionic/archivematica/debian-MCPServer/control deleted file mode 100644 index c6cdd336..00000000 --- a/debs/bionic/archivematica/debian-MCPServer/control +++ /dev/null @@ -1,21 +0,0 @@ -Source: archivematica-mcp-server -Section: utils -Priority: extra -Maintainer: Artefactual Systems Inc. -Build-Depends: - debhelper, - dh-systemd -Standards-Version: 3.9.8 -X-Python-Version: 3.6 - -Package: archivematica-mcp-server -Architecture: amd64 -Depends: - ${misc:Depends}, - archivematica-common (>= 1.13.0), - dbconfig-common, - dbconfig-mysql, - mysql-server, - gearman -Description: Archivematica MCPServer (workflow engine) -Homepage: https://www.archivematica.org diff --git a/debs/bionic/archivematica/debian-MCPServer/postinst b/debs/bionic/archivematica/debian-MCPServer/postinst deleted file mode 100755 index 4b56f411..00000000 --- a/debs/bionic/archivematica/debian-MCPServer/postinst +++ /dev/null @@ -1,37 +0,0 @@ -#!/bin/sh -# source debconf stuff -. /usr/share/debconf/confmodule -. /usr/share/dbconfig-common/dpkg/postinst.mysql - -# Set the default database encoding to UTF8 -dbc_mysql_createdb_encoding="UTF8" - -dbc_go archivematica-mcp-server $@ - -# Create sharedDirectory and rsync content -mkdir -p /var/archivematica/sharedDirectory/ -chown -R archivematica:archivematica /var/archivematica/ - -# Create logs dir -logdir=/var/log/archivematica/MCPServer -mkdir -p $logdir -chown -R archivematica:archivematica $logdir -chmod -R g+s $logdir - -# Populate default mysql config -DBPASS=$(grep "dbc_dbpass=" /etc/dbconfig-common/archivematica-mcp-server.conf| cut -d\= -f2- | tr -d \') -sed -i "s/^\(ARCHIVEMATICA_MCPSERVER_CLIENT_PASSWORD=\).*/\1$DBPASS/g" /etc/default/archivematica-mcp-server - -DBUSER=$(grep "dbc_dbuser=" /etc/dbconfig-common/archivematica-mcp-server.conf| cut -d\= -f2- | tr -d \') -sed -i "s/^\(ARCHIVEMATICA_MCPSERVER_CLIENT_USER=\).*/\1$DBUSER/g" /etc/default/archivematica-mcp-server - -DBNAME=$(grep "dbc_dbname=" /etc/dbconfig-common/archivematica-mcp-server.conf| cut -d\= -f2- | tr -d \') -sed -i "s/^\(ARCHIVEMATICA_MCPSERVER_CLIENT_DATABASE=\).*/\1$DBNAME/g" /etc/default/archivematica-mcp-server - -# Use ucf to preserve user changes in the default file -ucfr archivematica-mcp-server /etc/default/archivematica-mcp-server -ucf --debconf-ok /etc/default/archivematica-mcp-server /etc/default/archivematica-mcp-server - -find /usr/lib/archivematica/MCPServer/ -name '*.pyc' -delete - -#DEBHELPER# diff --git a/debs/bionic/archivematica/debian-MCPServer/postrm b/debs/bionic/archivematica/debian-MCPServer/postrm deleted file mode 100755 index 35c48fe9..00000000 --- a/debs/bionic/archivematica/debian-MCPServer/postrm +++ /dev/null @@ -1,26 +0,0 @@ -#!/bin/sh - -if [ -f /usr/share/debconf/confmodule ]; then - . /usr/share/debconf/confmodule -fi - -if [ -f /usr/share/dbconfig-common/dpkg/postrm.mysql ]; then - . /usr/share/dbconfig-common/dpkg/postrm.mysql - dbc_go archivematica-mcp-server $@ -fi - -if [ "$1" = "purge" ]; then - rm -f /etc/dbconfig-common/archivematica-mcp-server.conf - if which ucf >/dev/null 2>&1; then - ucf --purge /etc/dbconfig-common/archivematica-mcp-server.conf - ucfr --purge archivematica-mcp-server /etc/dbconfig-common/archivematica-mcp-server.conf - fi -fi - -if [ "$1" = "purge" ]; then - rm -f /etc/default/archivematica-mcp-server - if which ucf >/dev/null 2>&1; then - ucf --purge /etc/default/archivematica-mcp-server - ucfr --purge archivematica-mcp-server /etc/default/archivematica-mcp-server - fi -fi diff --git a/debs/bionic/archivematica/debian-MCPServer/prerm b/debs/bionic/archivematica/debian-MCPServer/prerm deleted file mode 100755 index ad17834f..00000000 --- a/debs/bionic/archivematica/debian-MCPServer/prerm +++ /dev/null @@ -1,7 +0,0 @@ -#!/bin/sh - -. /usr/share/debconf/confmodule -. /usr/share/dbconfig-common/dpkg/prerm.mysql -dbc_go archivematica-mcp-server $@ - -#DEBHELPER# diff --git a/debs/bionic/archivematica/debian-MCPServer/rules b/debs/bionic/archivematica/debian-MCPServer/rules deleted file mode 100755 index 5a17f5f0..00000000 --- a/debs/bionic/archivematica/debian-MCPServer/rules +++ /dev/null @@ -1,6 +0,0 @@ -#!/usr/bin/make -f - -export LC_ALL=C.UTF-8 - -%: - dh $@ --with systemd diff --git a/debs/bionic/archivematica/debian-MCPServer/source/format b/debs/bionic/archivematica/debian-MCPServer/source/format deleted file mode 100644 index 89ae9db8..00000000 --- a/debs/bionic/archivematica/debian-MCPServer/source/format +++ /dev/null @@ -1 +0,0 @@ -3.0 (native) diff --git a/debs/bionic/archivematica/debian-archivematica/archivematica.install b/debs/bionic/archivematica/debian-archivematica/archivematica.install deleted file mode 100644 index e69de29b..00000000 diff --git a/debs/bionic/archivematica/debian-archivematica/changelog b/debs/bionic/archivematica/debian-archivematica/changelog deleted file mode 100644 index 44907cd1..00000000 --- a/debs/bionic/archivematica/debian-archivematica/changelog +++ /dev/null @@ -1,34 +0,0 @@ -archivematica (1:1.14.1-1~18.04) bionic; urgency=high - - * commit: bcdcadd19698b77f51e4552c4e899e2aa9a5b237 - * checkout: v1.14.1 - - -- Artefactual Systems Wed, 19 Jul 2023 18:06:50 +0000 - -archivematica (1:1.14.0-1~18.04) bionic; urgency=high - - * commit: 56388245da256fb8f5a5871874fac2f7a7c5d8e0 - * checkout: v1.14.0 - - -- Artefactual Systems Wed, 14 Jun 2023 03:50:59 +0000 - -archivematica (1:1.13.2-1~18.04) bionic; urgency=high - - * commit: 4f4605453d5a8796f6a739fa9664921bdb3418f2 - * checkout: v1.13.2 - - -- Artefactual Systems Mon, 13 Dec 2021 09:58:46 +0000 - -archivematica (1:1.13.1-1~18.04) bionic; urgency=high - - * commit: 220fbcae4dc6072fbc0e8e74cfb0a326962b21b2 - * checkout: v1.13.1 - - -- Artefactual Systems Tue, 19 Oct 2021 15:08:51 +0000 - -archivematica (1:1.13.0~rc.1+3.g66ce19de~18.04) bionic; urgency=high - - * commit: 66ce19defafa1539fe3163df1cf41e36838d2e3d - * checkout: v1.13.0 - - -- Artefactual Systems Mon, 31 Jul 2017 19:20:04 +0000 diff --git a/debs/bionic/archivematica/debian-archivematica/compat b/debs/bionic/archivematica/debian-archivematica/compat deleted file mode 100644 index ec635144..00000000 --- a/debs/bionic/archivematica/debian-archivematica/compat +++ /dev/null @@ -1 +0,0 @@ -9 diff --git a/debs/bionic/archivematica/debian-archivematica/control b/debs/bionic/archivematica/debian-archivematica/control deleted file mode 100644 index 2ea93eeb..00000000 --- a/debs/bionic/archivematica/debian-archivematica/control +++ /dev/null @@ -1,22 +0,0 @@ -Source: archivematica -Section: utils -Priority: extra -Maintainer: Artefactual Systems Inc. -Build-Depends: - debhelper, - dh-virtualenv, - python3.6-dev, - libmysqlclient-dev, - libffi-dev, - libldap2-dev, - libsasl2-dev, - libssl-dev, - libxml2-dev, - libxslt1-dev, -Standards-Version: 3.9.8 -X-Python-Version: 3.6 - -Package: archivematica -Architecture: amd64 -Description: Standards-based digital preservation system. -Homepage: https://www.archivematica.org diff --git a/debs/bionic/archivematica/debian-archivematica/rules b/debs/bionic/archivematica/debian-archivematica/rules deleted file mode 100755 index 3f02e65b..00000000 --- a/debs/bionic/archivematica/debian-archivematica/rules +++ /dev/null @@ -1,18 +0,0 @@ -#!/usr/bin/make -f - -export LC_ALL=C.UTF-8 -export DH_VIRTUALENV_INSTALL_ROOT=/usr/share/archivematica/virtualenvs - -%: - dh $@ --with python-virtualenv - -override_dh_virtualenv: - dh_virtualenv --python=python3 --requirements=requirements.txt --skip-install - -# See https://readthedocs.org/projects/dh-virtualenv/downloads/pdf/latest/ (2.3.3 section) -override_dh_shlibdeps: - dh_shlibdeps --exclude=psycopg2 - -# See https://readthedocs.org/projects/dh-virtualenv/downloads/pdf/latest/ (2.3.3 section) -override_dh_strip: - dh_strip --exclude=psycopg2 diff --git a/debs/bionic/archivematica/debian-archivematica/source/format b/debs/bionic/archivematica/debian-archivematica/source/format deleted file mode 100644 index 89ae9db8..00000000 --- a/debs/bionic/archivematica/debian-archivematica/source/format +++ /dev/null @@ -1 +0,0 @@ -3.0 (native) diff --git a/debs/bionic/archivematica/debian-archivematicaCommon/archivematica-common.install b/debs/bionic/archivematica/debian-archivematicaCommon/archivematica-common.install deleted file mode 100644 index 9d99f543..00000000 --- a/debs/bionic/archivematica/debian-archivematicaCommon/archivematica-common.install +++ /dev/null @@ -1 +0,0 @@ -lib/* /usr/lib/archivematica/archivematicaCommon/ diff --git a/debs/bionic/archivematica/debian-archivematicaCommon/changelog b/debs/bionic/archivematica/debian-archivematicaCommon/changelog deleted file mode 100644 index b6c8dd80..00000000 --- a/debs/bionic/archivematica/debian-archivematicaCommon/changelog +++ /dev/null @@ -1,139 +0,0 @@ -archivematica-common (1:1.14.1-1~18.04) bionic; urgency=high - - * commit: bcdcadd19698b77f51e4552c4e899e2aa9a5b237 - * checkout: v1.14.1 - - -- Artefactual Systems Wed, 19 Jul 2023 18:09:20 +0000 - -archivematica-common (1:1.14.0-1~18.04) bionic; urgency=high - - * commit: 56388245da256fb8f5a5871874fac2f7a7c5d8e0 - * checkout: v1.14.0 - - -- Artefactual Systems Wed, 14 Jun 2023 03:53:43 +0000 - -archivematica-common (1:1.13.2-1~18.04) bionic; urgency=high - - * commit: 4f4605453d5a8796f6a739fa9664921bdb3418f2 - * checkout: v1.13.2 - - -- Artefactual Systems Mon, 13 Dec 2021 10:01:39 +0000 - -archivematica-common (1:1.13.1-1~18.04) bionic; urgency=high - - * commit: 220fbcae4dc6072fbc0e8e74cfb0a326962b21b2 - * checkout: v1.13.1 - - -- Artefactual Systems Tue, 19 Oct 2021 15:11:47 +0000 - -archivematica-common (1:1.13.0-1~18.04) bionic; urgency=high - - * commit: 2a83f0c47243881e363cb3db031e51b089c4094a - * checkout: v1.13.0 - - -- Artefactual Systems Fri, 09 Jul 2021 19:05:48 +0000 - -archivematica-common (1:1.12.1-1~18.04) bionic; urgency=high - - * commit: a31f218ceabc5bbe996775b82b9c9861b2f406d9 - * checkout: v1.12.1 - - -- Artefactual Systems Thu, 07 Jan 2021 10:02:25 +0000 - -archivematica-common (1:1.12.0-1~18.04) bionic; urgency=high - - * commit: c5e7a0fb4aaaf5d30d20e46707b66f788d7a0fba - * checkout: v1.12.0 - - -- Artefactual Systems Tue, 06 Oct 2020 16:33:40 +0000 - -archivematica-common (1:1.11.2-1~18.04) bionic; urgency=high - - * commit: 396015a44723e6b2dd2f4d7bed1443514a429c12 - * checkout: v1.11.2 - - -- Artefactual Systems Fri, 12 Jun 2020 08:28:36 +0000 - -archivematica-common (1:1.11.1-1~18.04) bionic; urgency=high - - * commit: aeaf62b004d0ff5ea6fc2c56bc6291680b6c779e - * checkout: stable/1.11.x - - -- Artefactual Systems Mon, 18 May 2020 18:37:31 +0000 - -archivematica-common (1:1.11.0-1~18.04) bionic; urgency=high - - * commit: 3e52494735ebfeb0cabc477d95d692034f4b3142 - * checkout: v1.11.0 - - -- Artefactual Systems Tue, 31 Mar 2020 15:45:48 +0000 - -archivematica-common (1:1.10.1-1~18.04) bionic; urgency=high - - * commit: ef3af9fb58ac700dfca2a350095ef13a0c396e9c - * checkout: v1.10.1 - - -- Artefactual Systems Tue, 22 Oct 2019 19:39:33 +0000 - -archivematica-common (1:1.10.0-2~18.04) bionic; urgency=high - - * commit: 862c4cdd780f1a235f20716d8472d34d9b56094f - * checkout: stable/1.10.x - - -- Artefactual Systems Mon, 30 Sep 2019 08:44:15 +0000 - -archivematica-common (1:1.10.0-1~18.04) bionic; urgency=high - - * commit: 862c4cdd780f1a235f20716d8472d34d9b56094f - * checkout: stable/1.10.x - - -- Artefactual Systems Thu, 05 Sep 2019 09:55:20 +0000 - -archivematica-common (1:1.9.1-1~18.04) bionic; urgency=high - - * commit: 84661775836cf8037ad3b48feb8e02bb80335f0f - * checkout: v1.9.1 - - -- Artefactual Systems Tue, 09 Apr 2019 20:43:51 +0000 - -archivematica-common (1:1.9.0-1~18.04) bionic; urgency=high - - * commit: a67d9d30832a313e49a8242d869739690b35e86c - * checkout: v1.9.0 - - -- Artefactual Systems Wed, 06 Mar 2019 15:19:33 +0000 - -archivematica-common (1:1.8.1-1~18.04) bionic; urgency=high - - * commit: e240825332b76f3cc50b66646921fd9b1ab84d4b - * checkout: v1.8.1 - - -- Artefactual Systems Wed, 09 Jan 2019 18:15:20 +0000 - -archivematica-common (1:1.8.0-1~18.04) bionic; urgency=high - - * commit: 707e9332f0bebf4c32def012e30752314a207d48 - * checkout: v1.8.0 - - -- Artefactual Systems Tue, 20 Nov 2018 10:49:08 +0000 - -archivematica-common (1:1.7.2-1~16.04) xenial; urgency=high - - * commit: 26a261c4e4c43cdf091ddf1a027657b9ac8fffaa - * checkout: v1.7.2 - - -- Artefactual Systems Tue, 11 Sep 2018 21:07:37 +0000 - -archivematica-common (1:1.7.0-1~16.04) xenial; urgency=high - - * commit: 353fb054bfed3cce09cc10e08068712aba2219fb - * checkout: v1.7.0 - - -- Artefactual Systems Tue, 01 May 2018 21:16:33 +0000 - -archivematica-common (1:1.6.1-2~16.04) xenial; urgency=high - - * commit: 11e89646f2708d525ba5f19ccce9b4879b02a619 - * checkout: stable/1.6.x - - -- Artefactual Systems Mon, 31 Jul 2017 19:20:04 +0000 diff --git a/debs/bionic/archivematica/debian-archivematicaCommon/compat b/debs/bionic/archivematica/debian-archivematicaCommon/compat deleted file mode 100644 index ec635144..00000000 --- a/debs/bionic/archivematica/debian-archivematicaCommon/compat +++ /dev/null @@ -1 +0,0 @@ -9 diff --git a/debs/bionic/archivematica/debian-archivematicaCommon/control b/debs/bionic/archivematica/debian-archivematicaCommon/control deleted file mode 100644 index 4bbd50ec..00000000 --- a/debs/bionic/archivematica/debian-archivematicaCommon/control +++ /dev/null @@ -1,18 +0,0 @@ -Source: archivematica-common -Section: utils -Priority: extra -Maintainer: Artefactual Systems Inc. -Build-Depends: - debhelper -Standards-Version: 3.9.8 -X-Python-Version: 3.6 - -Package: archivematica-common -Architecture: amd64 -Depends: - ${misc:Depends}, - python3, - python3-distutils, - archivematica (>= 1.13.0) -Description: Archivematica shared libraries. -Homepage: https://www.archivematica.org diff --git a/debs/bionic/archivematica/debian-archivematicaCommon/postinst b/debs/bionic/archivematica/debian-archivematicaCommon/postinst deleted file mode 100755 index 71a810fd..00000000 --- a/debs/bionic/archivematica/debian-archivematicaCommon/postinst +++ /dev/null @@ -1,3 +0,0 @@ -#!/bin/bash - -find /usr/lib/archivematica/archivematicaCommon/ -name '*.pyc' -delete diff --git a/debs/bionic/archivematica/debian-archivematicaCommon/rules b/debs/bionic/archivematica/debian-archivematicaCommon/rules deleted file mode 100755 index cb003aa5..00000000 --- a/debs/bionic/archivematica/debian-archivematicaCommon/rules +++ /dev/null @@ -1,7 +0,0 @@ -#!/usr/bin/make -f - -export LC_ALL=C.UTF-8 -export DH_VIRTUALENV_INSTALL_ROOT=/usr/share/archivematica/virtualenvs - -%: - dh $@ diff --git a/debs/bionic/archivematica/debian-archivematicaCommon/source/format b/debs/bionic/archivematica/debian-archivematicaCommon/source/format deleted file mode 100644 index 89ae9db8..00000000 --- a/debs/bionic/archivematica/debian-archivematicaCommon/source/format +++ /dev/null @@ -1 +0,0 @@ -3.0 (native) diff --git a/debs/bionic/archivematica/debian-dashboard/archivematica-dashboard.default b/debs/bionic/archivematica/debian-dashboard/archivematica-dashboard.default deleted file mode 100644 index 46dc889d..00000000 --- a/debs/bionic/archivematica/debian-dashboard/archivematica-dashboard.default +++ /dev/null @@ -1,16 +0,0 @@ -PYTHONPATH=/usr/lib/archivematica/archivematicaCommon:/usr/share/archivematica/dashboard -LANG="en_US.UTF-8" -LC_ALL="en_US.UTF-8" -LC_LANG="en_US.UTF-8" - -AM_GUNICORN_BIND=127.0.0.1:8002 -ARCHIVEMATICA_DASHBOARD_DASHBOARD_ELASTICSEARCH_SERVER=127.0.0.1:9200 -DJANGO_SETTINGS_MODULE=settings.production -ARCHIVEMATICA_DASHBOARD_DASHBOARD_DJANGO_ALLOWED_HOSTS=* -ARCHIVEMATICA_DASHBOARD_DASHBOARD_DJANGO_SECRET_KEY=CHANGE_ME_WITH_A_SECRET_KEY -ARCHIVEMATICA_DASHBOARD_CLIENT_HOST=localhost -ARCHIVEMATICA_DASHBOARD_CLIENT_DATABASE= -ARCHIVEMATICA_DASHBOARD_CLIENT_USER= -ARCHIVEMATICA_DASHBOARD_CLIENT_PASSWORD= - -REQUESTS_CA_BUNDLE=/etc/ssl/certs/ca-certificates.crt diff --git a/debs/bionic/archivematica/debian-dashboard/archivematica-dashboard.install b/debs/bionic/archivematica/debian-dashboard/archivematica-dashboard.install deleted file mode 100644 index e90df9dd..00000000 --- a/debs/bionic/archivematica/debian-dashboard/archivematica-dashboard.install +++ /dev/null @@ -1,4 +0,0 @@ -src/* /usr/share/archivematica/dashboard/ -install/dashboard.conf /etc/nginx/sites-available/ -install/dashboard.gunicorn-config.py /etc/archivematica/ -install/dashboard.logging.json /etc/archivematica/ diff --git a/debs/bionic/archivematica/debian-dashboard/archivematica-dashboard.service b/debs/bionic/archivematica/debian-dashboard/archivematica-dashboard.service deleted file mode 100644 index a4ccfb23..00000000 --- a/debs/bionic/archivematica/debian-dashboard/archivematica-dashboard.service +++ /dev/null @@ -1,21 +0,0 @@ -[Unit] -Description=Archivematica Dashboard -After=syslog.target network.target -StartLimitInterval=200 -StartLimitBurst=5 - -[Service] -PIDFile=/run/archivematica-dashboard_gunicorn.pid -User=archivematica -Group=archivematica -EnvironmentFile=/etc/default/archivematica-dashboard -WorkingDirectory=/usr/share/archivematica/dashboard/ -ExecStart=/usr/share/archivematica/virtualenvs/archivematica/bin/gunicorn --config /etc/archivematica/dashboard.gunicorn-config.py wsgi:application -ExecReload=/bin/kill -s HUP $MAINPID -ExecStop=/bin/kill -s TERM $MAINPID -PrivateTmp=true -Restart=always -RestartSec=30 - -[Install] -WantedBy=multi-user.target diff --git a/debs/bionic/archivematica/debian-dashboard/changelog b/debs/bionic/archivematica/debian-dashboard/changelog deleted file mode 100644 index 0e7a6f95..00000000 --- a/debs/bionic/archivematica/debian-dashboard/changelog +++ /dev/null @@ -1,139 +0,0 @@ -archivematica-dashboard (1:1.14.1-1~18.04) bionic; urgency=high - - * commit: bcdcadd19698b77f51e4552c4e899e2aa9a5b237 - * checkout: v1.14.1 - - -- Artefactual Systems Wed, 19 Jul 2023 18:08:21 +0000 - -archivematica-dashboard (1:1.14.0-1~18.04) bionic; urgency=high - - * commit: 56388245da256fb8f5a5871874fac2f7a7c5d8e0 - * checkout: v1.14.0 - - -- Artefactual Systems Wed, 14 Jun 2023 03:52:45 +0000 - -archivematica-dashboard (1:1.13.2-1~18.04) bionic; urgency=high - - * commit: 4f4605453d5a8796f6a739fa9664921bdb3418f2 - * checkout: v1.13.2 - - -- Artefactual Systems Mon, 13 Dec 2021 10:00:42 +0000 - -archivematica-dashboard (1:1.13.1-1~18.04) bionic; urgency=high - - * commit: 220fbcae4dc6072fbc0e8e74cfb0a326962b21b2 - * checkout: v1.13.1 - - -- Artefactual Systems Tue, 19 Oct 2021 15:10:53 +0000 - -archivematica-dashboard (1:1.13.0-1~18.04) bionic; urgency=high - - * commit: 2a83f0c47243881e363cb3db031e51b089c4094a - * checkout: v1.13.0 - - -- Artefactual Systems Fri, 09 Jul 2021 19:04:50 +0000 - -archivematica-dashboard (1:1.12.1-1~18.04) bionic; urgency=high - - * commit: a31f218ceabc5bbe996775b82b9c9861b2f406d9 - * checkout: v1.12.1 - - -- Artefactual Systems Thu, 07 Jan 2021 09:55:33 +0000 - -archivematica-dashboard (1:1.12.0-1~18.04) bionic; urgency=high - - * commit: c5e7a0fb4aaaf5d30d20e46707b66f788d7a0fba - * checkout: v1.12.0 - - -- Artefactual Systems Tue, 06 Oct 2020 16:25:53 +0000 - -archivematica-dashboard (1:1.11.2-1~18.04) bionic; urgency=high - - * commit: 396015a44723e6b2dd2f4d7bed1443514a429c12 - * checkout: v1.11.2 - - -- Artefactual Systems Fri, 12 Jun 2020 08:22:44 +0000 - -archivematica-dashboard (1:1.11.1-1~18.04) bionic; urgency=high - - * commit: aeaf62b004d0ff5ea6fc2c56bc6291680b6c779e - * checkout: stable/1.11.x - - -- Artefactual Systems Mon, 18 May 2020 18:31:38 +0000 - -archivematica-dashboard (1:1.11.0-1~18.04) bionic; urgency=high - - * commit: 3e52494735ebfeb0cabc477d95d692034f4b3142 - * checkout: v1.11.0 - - -- Artefactual Systems Tue, 31 Mar 2020 15:39:55 +0000 - -archivematica-dashboard (1:1.10.1-1~18.04) bionic; urgency=high - - * commit: ef3af9fb58ac700dfca2a350095ef13a0c396e9c - * checkout: v1.10.1 - - -- Artefactual Systems Tue, 22 Oct 2019 19:34:52 +0000 - -archivematica-dashboard (1:1.10.0-2~18.04) bionic; urgency=high - - * commit: 862c4cdd780f1a235f20716d8472d34d9b56094f - * checkout: stable/1.10.x - - -- Artefactual Systems Mon, 30 Sep 2019 08:39:37 +0000 - -archivematica-dashboard (1:1.10.0-1~18.04) bionic; urgency=high - - * commit: 862c4cdd780f1a235f20716d8472d34d9b56094f - * checkout: stable/1.10.x - - -- Artefactual Systems Thu, 05 Sep 2019 09:50:40 +0000 - -archivematica-dashboard (1:1.9.1-1~18.04) bionic; urgency=high - - * commit: 84661775836cf8037ad3b48feb8e02bb80335f0f - * checkout: v1.9.1 - - -- Artefactual Systems Tue, 09 Apr 2019 20:30:28 +0000 - -archivematica-dashboard (1:1.9.0-1~18.04) bionic; urgency=high - - * commit: a67d9d30832a313e49a8242d869739690b35e86c - * checkout: v1.9.0 - - -- Artefactual Systems Wed, 06 Mar 2019 15:05:55 +0000 - -archivematica-dashboard (1:1.8.1-1~18.04) bionic; urgency=high - - * commit: e240825332b76f3cc50b66646921fd9b1ab84d4b - * checkout: v1.8.1 - - -- Artefactual Systems Wed, 09 Jan 2019 17:47:39 +0000 - -archivematica-dashboard (1:1.8.0-1~18.04) bionic; urgency=high - - * commit: 707e9332f0bebf4c32def012e30752314a207d48 - * checkout: v1.8.0 - - -- Artefactual Systems Tue, 20 Nov 2018 10:27:24 +0000 - -archivematica-dashboard (1:1.7.2-1~16.04) xenial; urgency=high - - * commit: 26a261c4e4c43cdf091ddf1a027657b9ac8fffaa - * checkout: v1.7.2 - - -- Artefactual Systems Tue, 11 Sep 2018 21:01:00 +0000 - -archivematica-dashboard (1:1.7.0-1~16.04) xenial; urgency=high - - * commit: 353fb054bfed3cce09cc10e08068712aba2219fb - * checkout: v1.7.0 - - -- Artefactual Systems Tue, 01 May 2018 21:03:54 +0000 - -archivematica-dashboard (1:1.6.1-2~16.04) xenial; urgency=high - - * commit: 11e89646f2708d525ba5f19ccce9b4879b02a619 - * checkout: stable/1.6.x - - -- Artefactual Systems Mon, 31 Jul 2017 19:20:04 +0000 diff --git a/debs/bionic/archivematica/debian-dashboard/compat b/debs/bionic/archivematica/debian-dashboard/compat deleted file mode 100644 index ec635144..00000000 --- a/debs/bionic/archivematica/debian-dashboard/compat +++ /dev/null @@ -1 +0,0 @@ -9 diff --git a/debs/bionic/archivematica/debian-dashboard/control b/debs/bionic/archivematica/debian-dashboard/control deleted file mode 100644 index 35a8e738..00000000 --- a/debs/bionic/archivematica/debian-dashboard/control +++ /dev/null @@ -1,21 +0,0 @@ -Source: archivematica-dashboard -Section: utils -Priority: extra -Maintainer: Artefactual Systems Inc. -Build-Depends: - debhelper, - dh-systemd -Standards-Version: 3.9.8 -X-Python-Version: 3.6 - -Package: archivematica-dashboard -Architecture: any -Depends: - ${shlibs:Depends}, - ${misc:Depends}, - archivematica-common (>= 1.13.0), - git, - nginx, - gettext -Description: Archivematida Dashboard (web-based interface). -Homepage: https://www.archivematica.org diff --git a/debs/bionic/archivematica/debian-dashboard/postinst b/debs/bionic/archivematica/debian-dashboard/postinst deleted file mode 100755 index 3d161915..00000000 --- a/debs/bionic/archivematica/debian-dashboard/postinst +++ /dev/null @@ -1,53 +0,0 @@ -#!/bin/bash - -# Runs Django's command-line utility for administrative tasks inside the -# Python virtual environment bundled with the package. -function dashboard::manage { - # Certain tasks like compilemessages rely on the current directory. - pushd /usr/share/archivematica/dashboard - /usr/share/archivematica/virtualenvs/archivematica/bin/python manage.py "$@" - popd -} - -# Create logs directory -logdir=/var/log/archivematica/dashboard -mkdir -p $logdir -chown -R archivematica:archivematica $logdir -chmod -R g+s $logdir - -# Create Django key -KEY=$(cat /dev/urandom | tr -dc 'a-zA-Z0-9' | fold -w 50 | head -n 1) -sed -i "s/CHANGE_ME_WITH_A_SECRET_KEY/\"$KEY\"/g" /etc/default/archivematica-dashboard - -# Populate default mysql config -DBPASS=$(grep "dbc_dbpass=" /etc/dbconfig-common/archivematica-mcp-server.conf| cut -d\= -f2- | tr -d \') -sed -i "s/^\(ARCHIVEMATICA_DASHBOARD_CLIENT_PASSWORD=\).*/\1$DBPASS/g" /etc/default/archivematica-dashboard - -DBUSER=$(grep "dbc_dbuser=" /etc/dbconfig-common/archivematica-mcp-server.conf| cut -d\= -f2- | tr -d \') -sed -i "s/^\(ARCHIVEMATICA_DASHBOARD_CLIENT_USER=\).*/\1$DBUSER/g" /etc/default/archivematica-dashboard - -DBNAME=$(grep "dbc_dbname=" /etc/dbconfig-common/archivematica-mcp-server.conf| cut -d\= -f2- | tr -d \') -sed -i "s/^\(ARCHIVEMATICA_DASHBOARD_CLIENT_DATABASE=\).*/\1$DBNAME/g" /etc/default/archivematica-dashboard - -# Use ucf to preserve user changes in the default file -ucfr archivematica-dashboard /etc/default/archivematica-dashboard -ucf --debconf-ok /etc/default/archivematica-dashboard /etc/default/archivematica-dashboard - -find /usr/share/archivematica/dashboard/ -name '*.pyc' -delete - -#this is required to allow syncdb to work properly -set -a -source /etc/default/archivematica-dashboard -set +a - -# Run migrations -dashboard::manage migrate --settings='settings.production' --noinput - -# Collect static content -mkdir -p /usr/share/archivematica/dashboard/static -dashboard::manage collectstatic --noinput --clear - -# Compile messages -dashboard::manage compilemessages - -#DEBHELPER# diff --git a/debs/bionic/archivematica/debian-dashboard/postrm b/debs/bionic/archivematica/debian-dashboard/postrm deleted file mode 100755 index 3da6ef61..00000000 --- a/debs/bionic/archivematica/debian-dashboard/postrm +++ /dev/null @@ -1,9 +0,0 @@ -#!/bin/sh - -if [ "$1" = "purge" ]; then - rm -f /etc/default/archivematica-dashboard - if which ucf >/dev/null 2>&1; then - ucf --purge /etc/default/archivematica-dashboard - ucfr --purge archivematica-dashboard /etc/default/archivematica-dashboard - fi -fi diff --git a/debs/bionic/archivematica/debian-dashboard/rules b/debs/bionic/archivematica/debian-dashboard/rules deleted file mode 100755 index 5a17f5f0..00000000 --- a/debs/bionic/archivematica/debian-dashboard/rules +++ /dev/null @@ -1,6 +0,0 @@ -#!/usr/bin/make -f - -export LC_ALL=C.UTF-8 - -%: - dh $@ --with systemd diff --git a/debs/bionic/archivematica/debian-dashboard/source/format b/debs/bionic/archivematica/debian-dashboard/source/format deleted file mode 100644 index 89ae9db8..00000000 --- a/debs/bionic/archivematica/debian-dashboard/source/format +++ /dev/null @@ -1 +0,0 @@ -3.0 (native) diff --git a/debs/bionic/bulk_extractor/Dockerfile b/debs/bionic/bulk_extractor/Dockerfile deleted file mode 100644 index 2830de7b..00000000 --- a/debs/bionic/bulk_extractor/Dockerfile +++ /dev/null @@ -1,20 +0,0 @@ -FROM ubuntu:bionic - -ARG SRC_URL -ARG PACKAGE -ARG SRC_VERSION -ARG SRC_SHA256 - -RUN apt-get update - -RUN apt-get install -y dpkg-dev git build-essential wget debhelper \ - devscripts equivs - -RUN mkdir -p /debbuild/ && cd /debbuild && \ - wget $SRC_URL && \ - echo "$SRC_SHA256 $PACKAGE-$SRC_VERSION.tar.gz" | sha256sum --check && \ - tar xfz $PACKAGE-$SRC_VERSION.tar.gz && \ - mv $PACKAGE-$SRC_VERSION $PACKAGE && \ - cd $PACKAGE - -ADD debian /debbuild/$PACKAGE/debian diff --git a/debs/bionic/bulk_extractor/Makefile b/debs/bionic/bulk_extractor/Makefile deleted file mode 100644 index 2bcdd36b..00000000 --- a/debs/bionic/bulk_extractor/Makefile +++ /dev/null @@ -1,53 +0,0 @@ -NAME = bulk_extractor -VERSION ?= 1.5.5 -RELEASE ?= 1~18.04 -SRC_URL = http://downloads.digitalcorpora.org/downloads/bulk_extractor/bulk_extractor-1.5.5.tar.gz -SRC_SHA256 = 297a57808c12b81b8e0d82222cf57245ad988804ab467eb0a70cf8669594e8ed -DEB_TOPDIR = "/debbuild" -DOCKER_VOLUME = "/src" -DOCKER_IMAGE = "debbuild-$(NAME)-$(VERSION)" -GPG_ID ?= 5236CA08 - -.PHONY: build-docker-image build deb-build deb-clean deb-test update-changelog - -all: build-docker-image build - -build-docker-image: - @echo "==> Building Docker image with build environment." - @docker build --tag "$(DOCKER_IMAGE)" --build-arg SRC_URL="$(SRC_URL)" --build-arg SRC_VERSION="$(VERSION)" --build-arg SRC_SHA256="$(SRC_SHA256)" --build-arg PACKAGE="$(NAME)" . - -update-changelog: - @echo "==> Update changelog." - @dch -v $(VERSION)-$(RELEASE) -D bionic "New upstream release" - -build: - @echo "==> Building deb." - @docker run --rm \ - -e GPG_ID=$(GPG_ID) \ - -e GPG_KEY \ - --volume "$(shell pwd):$(DOCKER_VOLUME)" $(DOCKER_IMAGE) make -C $(DOCKER_VOLUME) deb-build - -deb-build: deb-clean - @echo "==> Install dependencies." - cd /debbuild/$(NAME) && yes | mk-build-deps --install debian/control - @echo "==> Update changelog." - cd /debbuild/$(NAME) && dch -v $(VERSION)-$(RELEASE) -D bionic "New upstream release" - - @echo "==> Run bootstrap.sh." - cd /debbuild/$(NAME) && sh bootstrap.sh - @echo "==> Build package." - cd /debbuild/$(NAME) && dpkg-buildpackage - @echo "==> Copying built files." - mkdir -p $(DOCKER_VOLUME)/build/ - cp $(DEB_TOPDIR)/*.* $(DOCKER_VOLUME)/build/ - -deb-clean: - @echo "===> Install gpg key" - if [ -f "$(DOCKER_VOLUME)/GPG-KEY" ]; then gpg --import $(DOCKER_VOLUME)/GPG-KEY; fi - if [ x"$$GPG_KEY" != x ]; then echo "$$GPG_KEY" | gpg --import - ; fi - @echo "==> Cleaning up previous RPMs builds." - @rm -rf $(DOCKER_VOLUME)/build/ - -# TODO: Create repo and test it -deb-test: - @docker run --rm --volume="$(shell pwd):$(DOCKER_VOLUME)" ubuntu:trusty echo "Create repo and install package" diff --git a/debs/bionic/bulk_extractor/debian/changelog b/debs/bionic/bulk_extractor/debian/changelog deleted file mode 100644 index 8ef617cb..00000000 --- a/debs/bionic/bulk_extractor/debian/changelog +++ /dev/null @@ -1,22 +0,0 @@ -bulk-extractor (1.5.5-1~18.04) bionic; urgency=low - - * Bump version to 1.5.5 - * Use http://downloads.digitalcorpora.org/downloads/bulk_extractor/ instead of github - - -- Miguel Medinilla Mon, 27 Feb 2019 12:03:02 -0700 - -bulk-extractor (1.5.3-1~18.04) bionic; urgency=low - - * Bump version to 1.5.3 - * Use autoreconf to build package - * Run "sh bootstrap.sh" before running automake. - * Use libssl1.0-dev instead of libssl-dev to build package - * Increase dependendencies: java, libboost, libewf, libafflib - - -- Miguel Medinilla Mon, 26 Feb 2019 12:32:01 -0700 - -bulk-extractor (1.5.0-1~16.04) xenial; urgency=low - - * New upstream release - - -- Santiago Rodriguez Collazo Mon, 23 Mar 2015 16:34:02 -0700 diff --git a/debs/bionic/bulk_extractor/debian/compat b/debs/bionic/bulk_extractor/debian/compat deleted file mode 100644 index ec635144..00000000 --- a/debs/bionic/bulk_extractor/debian/compat +++ /dev/null @@ -1 +0,0 @@ -9 diff --git a/debs/bionic/bulk_extractor/debian/control b/debs/bionic/bulk_extractor/debian/control deleted file mode 100644 index e7fe1898..00000000 --- a/debs/bionic/bulk_extractor/debian/control +++ /dev/null @@ -1,23 +0,0 @@ -Source: bulk-extractor -Section: utils -Priority: extra -Maintainer: Artefactual Systems Inc. -Standards-Version: 3.9.3 -Build-Depends: - debhelper (>= 9), - dh-autoreconf, - build-essential, - flex, - libcrypto++-dev, - bison, - libssl1.0-dev, - expat, - libewf-dev, - libafflib-dev, - libboost-all-dev, - openjdk-8-jdk - -Package: bulk-extractor -Architecture: any -Depends: ${shlibs:Depends}, ${misc:Depends} -Description: Bulk Extractor (bulk_extractor) is a feature extraction tool written in C++ for extracting features from media images. Extracted features are stored in feature files that can be easily inspected, parsed, or processed with automated tools. diff --git a/debs/bionic/bulk_extractor/debian/rules b/debs/bionic/bulk_extractor/debian/rules deleted file mode 100644 index 27b7d95b..00000000 --- a/debs/bionic/bulk_extractor/debian/rules +++ /dev/null @@ -1,7 +0,0 @@ -#!/usr/bin/make -f -%: - dh $@ -with autoreconf - -# make check is broken in the 1.5.5 release; re-enable in next release -# https://github.com/simsong/bulk_extractor/commit/1518072d5dbbf9fbb6f3841833241fdeaa2507b6 -override_dh_auto_test: diff --git a/debs/bionic/fits/Dockerfile b/debs/bionic/fits/Dockerfile deleted file mode 100644 index 9c1c5640..00000000 --- a/debs/bionic/fits/Dockerfile +++ /dev/null @@ -1,20 +0,0 @@ -FROM ubuntu:bionic - -ARG GIT_URL -ARG GIT_BRANCH -ARG PACKAGE - - -RUN apt-get update && \ - apt-get install -y dpkg-dev git build-essential wget debhelper \ - devscripts equivs quilt - - -RUN mkdir -p /debbuild/ && cd /debbuild && \ - git clone $GIT_URL && \ - cd $PACKAGE && \ - git checkout $GIT_BRANCH - -ADD debian /debbuild/$PACKAGE/debian - -ENV JAVA_TOOL_OPTIONS -Dfile.encoding=UTF8 diff --git a/debs/bionic/fits/Makefile b/debs/bionic/fits/Makefile deleted file mode 100644 index 7c108431..00000000 --- a/debs/bionic/fits/Makefile +++ /dev/null @@ -1,51 +0,0 @@ -NAME = fits -VERSION ?= 1.1.0 -RELEASE ?= 6~18.04 -GIT_URL = https://github.com/harvard-lts/fits -GPG_ID ?= 5236CA08 -DEB_TOPDIR = "/debbuild" -DOCKER_VOLUME = "/src" -DOCKER_IMAGE = "debbuild-$(NAME)-$(VERSION)" - -.PHONY: build-docker-image build deb-build deb-clean deb-test update-changelog - -all: build-docker-image build - -build-docker-image: - @echo "==> Building Docker image with build environment." - @docker build --tag "$(DOCKER_IMAGE)" --build-arg GIT_URL="$(GIT_URL)" --build-arg GIT_BRANCH="$(VERSION)" --build-arg PACKAGE="$(NAME)" . - -update-changelog: - @echo "==> Update changelog." - @dch -v $(VERSION)-$(RELEASE) -D xenial "New upstream release" - -build: - @echo "==> Building deb." - @docker run --rm \ - -e GPG_ID=$(GPG_ID) \ - -e GPG_KEY \ - --volume "$(shell pwd):$(DOCKER_VOLUME)" $(DOCKER_IMAGE) make -C $(DOCKER_VOLUME) deb-build - -deb-build: deb-clean - @echo "===> Install gpg key" - if [ -f "$(DOCKER_VOLUME)/GPG-KEY" ]; then gpg --import $(DOCKER_VOLUME)/GPG-KEY; fi - if [ x"$$GPG_KEY" != x ]; then echo "$$GPG_KEY" | gpg --import - ; fi - @echo "==> Apply patches." - cd /debbuild/$(NAME) && QUILT_PATCHES=debian/patches/ quilt push -a - @echo "==> Install dependencies." - cd /debbuild/$(NAME) && yes | mk-build-deps --install debian/control - @echo "==> Update changelog." - cd /debbuild/$(NAME) && dch -v $(VERSION)-$(RELEASE) -D xenial "New upstream release" - @echo "==> Build package." - cd /debbuild/$(NAME) && dpkg-buildpackage -k$(GPG_ID) - @echo "==> Copying built files." - mkdir -p $(DOCKER_VOLUME)/build/ - cp $(DEB_TOPDIR)/*.* $(DOCKER_VOLUME)/build/ - -deb-clean: - @echo "==> Cleaning up previous RPMs builds." - @rm -rf $(DOCKER_VOLUME)/build/ - -# TODO: Create repo and test it -deb-test: - @docker run --rm --volume="$(shell pwd):$(DOCKER_VOLUME)" ubuntu:trusty echo "Create repo and install package" diff --git a/debs/bionic/fits/debian/README.Debian b/debs/bionic/fits/debian/README.Debian deleted file mode 100644 index 1934195a..00000000 --- a/debs/bionic/fits/debian/README.Debian +++ /dev/null @@ -1,6 +0,0 @@ -fits for Debian ---------------- - - - - -- austin trask Sun, 25 Jul 2010 19:28:52 -0700 diff --git a/debs/bionic/fits/debian/README.source b/debs/bionic/fits/debian/README.source deleted file mode 100644 index bccead83..00000000 --- a/debs/bionic/fits/debian/README.source +++ /dev/null @@ -1,5 +0,0 @@ -fits for Debian ---------------- - - diff --git a/debs/bionic/fits/debian/changelog b/debs/bionic/fits/debian/changelog deleted file mode 100644 index 58b7d922..00000000 --- a/debs/bionic/fits/debian/changelog +++ /dev/null @@ -1,209 +0,0 @@ -fits (1.1.0-6~18.04) bionic; urgency=medium - - * Make JVM heap size configurable in /etc/default/fits - - -- Artefactual Sysadmin Tue, 19 Nov 2019 21:57:36 +0100 - -fits (1.1.0-5~18.04) bionic; urgency=low - - * Added systemd init script - - -- Artefactual Sysadmin Wed, 31 Oct 2018 10:25:11 -0800 - -fits (0.8.4-1~14.04) trusty; urgency=low - - * New upstream release - - -- Misty De Meo Wed, 04 Mar 2015 10:35:21 -0800 - -fits (0.8.4-1~12.04) precise; urgency=low - - * New upstream release - - -- Misty De Meo Wed, 04 Mar 2015 10:32:07 -0800 - -fits (0.8.2-6~14.04) trusty; urgency=low - - * Fix OS release tag - - -- Misty De Meo Wed, 10 Sep 2014 11:57:47 -0700 - -fits (0.8.2-6~12.04) precise; urgency=low - - * Fix OS release tag - - -- Misty De Meo Wed, 10 Sep 2014 11:57:09 -0700 - -fits (0.8.2-5~14.04) precise; urgency=low - - * Disable JHOVE by default - - -- Misty De Meo Wed, 10 Sep 2014 10:38:34 -0700 - -fits (0.8.2-5~12.04) precise; urgency=low - - * Disable JHOVE by default - - -- Misty De Meo Wed, 10 Sep 2014 10:33:56 -0700 - -fits (0.8.2-4~14.04) trusty; urgency=low - - * Correctly apply patches - - -- Misty De Meo Wed, 03 Sep 2014 12:03:33 -0700 - -fits (0.8.2-4~12.04) precise; urgency=low - - * Correctly apply patches - - -- Misty De Meo Wed, 03 Sep 2014 11:44:51 -0700 - -fits (0.8.2-3~12.04) precise; urgency=low - - * Pre-apply fits.conf patch - - -- Misty De Meo Tue, 02 Sep 2014 18:00:23 -0700 - -fits (0.8.2-2~14.04) trusty; urgency=low - - * Apply 0.8.0 fixes - - -- Misty De Meo Tue, 02 Sep 2014 13:11:43 -0700 - -fits (0.8.2-2~12.04) precise; urgency=low - - * Apply 0.8.0 fixes - - -- Misty De Meo Tue, 02 Sep 2014 11:11:05 -0700 - -fits (0.8.2-1~14.04) trusty; urgency=low - - * New upstream release - - -- Misty De Meo Fri, 29 Aug 2014 17:15:44 -0700 - -fits (0.8.2-1~12.04) precise; urgency=low - - * New upstream release - - -- Misty De Meo Fri, 29 Aug 2014 17:14:21 -0700 - -fits (0.8.0-5~14.04) trusty; urgency=low - - * Use default-jdk to fix build on trusty - - -- Misty De Meo Fri, 01 Aug 2014 11:45:59 -0700 - -fits (0.8.0-5~12.04) precise; urgency=low - - * Use default-jdk instead of hardcoding 6 - - -- Misty De Meo Fri, 01 Aug 2014 11:44:49 -0700 - -fits (0.8.0-4~14.04) trusty; urgency=low - - * Trusty package with below changes - - -- Misty De Meo Thu, 31 Jul 2014 16:10:05 -0700 - -fits (0.8.0-4~12.04) precise; urgency=low - - * Add nailgun dependencies - - -- Misty De Meo Thu, 31 Jul 2014 16:09:19 -0700 - -fits (0.8.0-3) precise; urgency=low - - * Customize default XML configuration - - -- Misty De Meo Mon, 17 Mar 2014 10:09:24 -0700 - -fits (0.8.0-2) precise; urgency=low - - * Skip shlibdeps check when building - - -- Misty De Meo Thu, 13 Mar 2014 11:19:40 -0700 - -fits (0.8.0-1) precise; urgency=low - - * Add upstart script - - -- Misty De Meo Wed, 12 Mar 2014 16:34:57 -0700 - -fits (0.8.0) precise; urgency=low - - * new upstream release - - -- Misty De Meo Wed, 12 Feb 2014 10:24:09 -0800 - -fits (0.8.0-pre1) precise; urgency=low - - * new upstream release (WIP) - - -- Misty De Meo Tue, 10 Dec 2013 12:52:43 -0800 - -fits (0.6.2-ppa0) precise; urgency=high - - * upgrade to 0.6.2 - - -- austin trask Thur, 30 May 2013 15:30:42 -0700 - -fits (0.6.1-ppa0) precise; urgency=high - - * upgrade to 0.6.1 - - -- austin trask Tue, 8 May 2012 15:30:42 -0700 - -fits (0.6.0-ppa1) precise; urgency=high - - * turned tool output on - - -- austin trask Tue, 6 Mar 2012 15:30:42 -0700 - -fits (0.6.0-ppa0) precise; urgency=high - - * intial build of fits for precise - - -- austin trask Thur, 1 Mar 2012 15:30:42 -0700 - -fits (0.5.0-ppa3) lucid; urgency=low - - * replaced fits.xml config default now at fits.xml.default - - -- austin trask Sun, 10 Apr 2011 15:30:42 -0700 - -fits (0.5.0-ppa2) lucid; urgency=low - - * try again for path fix - - -- austin trask Sun, 10 Apr 2011 15:30:42 -0700 - -fits (0.5.0-ppa1) lucid; urgency=low - - * fixed path patches for 0.5.0 - - -- austin trask Sun, 10 Apr 2011 15:27:42 -0700 - -fits (0.5.0-ppa0) lucid; urgency=low - - * Updated to FITS 0.5.0 - - -- austin trask Tue, 05 Apr 2011 15:27:42 -0700 - -fits (0.4.3-ppa0) lucid; urgency=low - - * Updated to FITS 0.4.3 - - -- austin trask Sun, 21 Nov 2010 15:27:42 -0700 - -fits (0.4.2-ppa1) lucid; urgency=low - - * fixed path for fits.sh copy in fits.install - - -- austin trask Fri, 13 Aug 2010 15:27:42 -0700 - -fits (0.4.2-1) lucid; urgency=low - - * Initial release - - -- austin trask Sun, 25 Jul 2010 19:28:52 -0700 diff --git a/debs/bionic/fits/debian/compat b/debs/bionic/fits/debian/compat deleted file mode 100644 index 7f8f011e..00000000 --- a/debs/bionic/fits/debian/compat +++ /dev/null @@ -1 +0,0 @@ -7 diff --git a/debs/bionic/fits/debian/control b/debs/bionic/fits/debian/control deleted file mode 100644 index 158b10a2..00000000 --- a/debs/bionic/fits/debian/control +++ /dev/null @@ -1,13 +0,0 @@ -Source: fits -Section: utils -Priority: extra -Maintainer: Artefactual -Build-Depends: debhelper (>= 7), openjdk-8-jdk-headless, ant -Standards-Version: 3.8.3 -Homepage: http://code.google.com/p/fits/ - -Package: fits -Architecture: any -Depends: ${shlibs:Depends}, ${misc:Depends}, nailgun (>= 0.9), openjdk-8-jre-headless -Description: File Information Tool Set (FITS) - The File Information Tool Set (FITS) identifies, validates, and extracts technical metadata for various file formats. It wraps several third-party open source tools, normalizes and consolidates their output, and reports any errors. diff --git a/debs/bionic/fits/debian/copyright b/debs/bionic/fits/debian/copyright deleted file mode 100644 index 7502f7a0..00000000 --- a/debs/bionic/fits/debian/copyright +++ /dev/null @@ -1,35 +0,0 @@ -This work was packaged for Debian by: - - austin trask on Sun, 25 Jul 2010 19:28:52 -0700 - -It was downloaded from - -Upstream Author(s): - - - - -Copyright: - - - - -License: - - - -The Debian packaging is: - - Copyright (C) 2010 austin trask - -# Please chose a license for your packaging work. If the program you package -# uses a mainstream license, using the same license is the safest choice. -# Please avoid to pick license terms that are more restrictive than the -# packaged work, as it may make Debian's contributions unacceptable upstream. -# If you just want it to be GPL version 3, leave the following lines in. - -and is licensed under the GPL version 3, -see `/usr/share/common-licenses/GPL-3'. - -# Please also look if there are files or directories which have a -# different copyright/license attached and list them here. diff --git a/debs/bionic/fits/debian/default b/debs/bionic/fits/debian/default deleted file mode 100644 index 25234497..00000000 --- a/debs/bionic/fits/debian/default +++ /dev/null @@ -1,5 +0,0 @@ -# Limit max memory usage for fips-nailgun -# This would limit it to 1 GB: -# MAX_JAVA_HEAP_SIZE="1g" - -MAX_JAVA_HEAP_SIZE="1g" diff --git a/debs/bionic/fits/debian/fits.doc-base.EX b/debs/bionic/fits/debian/fits.doc-base.EX deleted file mode 100644 index 03fb12c4..00000000 --- a/debs/bionic/fits/debian/fits.doc-base.EX +++ /dev/null @@ -1,20 +0,0 @@ -Document: fits -Title: Debian fits Manual -Author: -Abstract: This manual describes what fits is - and how it can be used to - manage online manuals on Debian systems. -Section: unknown - -Format: debiandoc-sgml -Files: /usr/share/doc/fits/fits.sgml.gz - -Format: postscript -Files: /usr/share/doc/fits/fits.ps.gz - -Format: text -Files: /usr/share/doc/fits/fits.text.gz - -Format: HTML -Index: /usr/share/doc/fits/html/index.html -Files: /usr/share/doc/fits/html/*.html diff --git a/debs/bionic/fits/debian/fits.fits-nailgun.service b/debs/bionic/fits/debian/fits.fits-nailgun.service deleted file mode 100644 index 6cfee125..00000000 --- a/debs/bionic/fits/debian/fits.fits-nailgun.service +++ /dev/null @@ -1,12 +0,0 @@ -[Unit] -Description=FITS Nailgun server -After=syslog.target network.target - -[Service] -User=archivematica -ExecStart=/usr/bin/fits-ngserver.sh /usr/share/maven-repo/com/martiansoftware/nailgun-server/debian/nailgun-server-debian.jar -Restart=always -RestartSec=3 - -[Install] -WantedBy=multi-user.target diff --git a/debs/bionic/fits/debian/fits.install b/debs/bionic/fits/debian/fits.install deleted file mode 100644 index d0e98a91..00000000 --- a/debs/bionic/fits/debian/fits.install +++ /dev/null @@ -1,8 +0,0 @@ -lib/* /usr/share/fits/lib/ -lib-fits/* /usr/share/fits/lib/ -version.properties /usr/share/fits/ -log4j.properties /usr/share/fits/ -tools/droid/* /usr/share/fits/tools/droid/ -tools/ffident/* /usr/share/fits/tools/ffident/ -xml/* /usr/share/fits/xml/ -fits*.sh /usr/bin/ diff --git a/debs/bionic/fits/debian/patches/archivematica-config.diff b/debs/bionic/fits/debian/patches/archivematica-config.diff deleted file mode 100644 index 78d47383..00000000 --- a/debs/bionic/fits/debian/patches/archivematica-config.diff +++ /dev/null @@ -1,42 +0,0 @@ -Index: fits/xml/fits.xml -=================================================================== ---- fits.orig/xml/fits.xml -+++ fits/xml/fits.xml -@@ -9,27 +9,29 @@ - - - -- -- -+ -+ -+ -+ - - - - -