commit 1b3ab7315c45edc7894d6c7c38104719192df4da Author: Penelope Gwen Date: Thu May 30 17:26:53 2024 -0600 Initial commit diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml new file mode 100644 index 0000000..f9da97e --- /dev/null +++ b/.gitlab-ci.yml @@ -0,0 +1,65 @@ +# Is performed before the scripts in the stages step +before_script: + - source /etc/profile + +# Defines stages which are to be executed +stages: + - build + - upload + - release + +.setup_script: &setup_scripts + - apt-get update + - apt-get -y build-dep . + - apt-get -y install dpkg-dev + +.compile: &compile + stage: compile + only: + - tags + script: + - *setup_scripts + - dpkg-buildpackage -b + - mkdir -p ./build/{release,debug} + - find ../ -name "*.deb" -not -name "*dbgsym*" -exec mv {} ./build/release/ \; + - find ../ -name "*dbgsym*.deb" -exec mv {} ./build/debug/ \; + artifacts: + paths: + - build/release/* + - build/debug/* + untracked: true + +build: + <<: *compile + stage: build + +upload: + stage: upload + dependencies: + - build + only: + - tags + script: + - find ./build/release -name "*.deb" + - debs=( $( find ./build/release -name "*.deb" ) ) + - assets="" + - for d in ${debs[@]};do + - file=$( basename ${d} ) + - url="${CI_API_V4_URL}/projects/${CI_PROJECT_ID}/packages/generic/${CI_PROJECT_NAME}/${CI_COMMIT_TAG}/${file}" + - assets="${assets} --assets-link {\"name\":\"${file}\",\"url\":\"${url}\",\"link_type\":\"other\"} " + - "curl --header \"JOB-TOKEN: $CI_JOB_TOKEN\" --upload-file \"${d}\" \"${url}\"" + - done + - echo "ASSETS_ARG=${assets}" >> assets.env + artifacts: + reports: + dotenv: assets.env + +release: + stage: release + image: registry.gitlab.com/gitlab-org/release-cli:latest + only: + - tags + script: + - echo "making release!" + - echo ${ASSETS_ARG} + - release-cli create --name "Release ${CI_COMMIT_TAG}" --tag-name "${CI_COMMIT_TAG}" ${ASSETS_ARG} diff --git a/debian/README.Debian b/debian/README.Debian new file mode 100644 index 0000000..1a406f3 --- /dev/null +++ b/debian/README.Debian @@ -0,0 +1,6 @@ +pogmom-apps for Debian +------------------------ + +These tools are for use in a desktop environment + + -- Penelope Gwen , Thu, 30 May 2024 17:07:09 -0600 diff --git a/debian/changelog b/debian/changelog new file mode 100644 index 0000000..fe557f0 --- /dev/null +++ b/debian/changelog @@ -0,0 +1,5 @@ +pogmom-apps (0.1) unstable; urgency=medium + + * Initial release. + + -- Penelope Gwen Thu, 30 May 2024 17:07:19 -0600 diff --git a/debian/control b/debian/control new file mode 100644 index 0000000..3b2fde5 --- /dev/null +++ b/debian/control @@ -0,0 +1,35 @@ +Source: pogmom-apps +Section: metapackages +Priority: optional +Maintainer: Penelope Gwen +Rules-Requires-Root: no +Build-Depends: + debhelper-compat (= 13), +Standards-Version: 4.7.0 +Homepage: https://git.pogmom.me/pogmommy/pogmom-apps + +Package: pogmom-apps +Architecture: all +Depends: + alacritty, + ark, + armcord, + dolphin, + feh, + filelight, + floorp, + gimp, + kate, + kdeconnect, + libreoffice, + libreoffice-qt5, + mpv, + nextcloud-desktop, + partitionmanager, + qbittorrent, + syncthing-gtk, + thunderbird, + timeshift, + xournalpp +Description: Recommended desktop packages + This metapackage includes various pieces of software to be used in a desktop environment diff --git a/debian/copyright b/debian/copyright new file mode 100644 index 0000000..c00d0da --- /dev/null +++ b/debian/copyright @@ -0,0 +1,60 @@ +Format: https://www.debian.org/doc/packaging-manuals/copyright-format/1.0/ +Source: https://git.pogmom.me/pogmommy/pogmom-apps +Upstream-Name: pogmom-apps +Upstream-Contact: Penelope Gwen + +Files: + * +Copyright: + 2024 Penelope Gwendolyn +License: Opinionated Queer License + PERMISSIONS + . + The creators of this Work (“The Licensor”) grant permission + to any person, group or legal entity that doesn't violate the prohibitions below (“The User”), + to do everything with this Work that would otherwise infringe their copyright or any patent claims, + subject to the following conditions: + . + OBLIGATIONS + . + The User must give appropriate credit to the Licensor, + provide a copy of this license or a (clickable, if the medium allows) link to + oql.avris.it/license/v1.1, + and indicate whether and what kind of changes were made. + The User may do so in any reasonable manner, + but not in any way that suggests the Licensor endorses the User or their use. + . + PROHIBITIONS + . + No one may use this Work for prejudiced or bigoted purposes, including but not limited to: + racism, xenophobia, queerphobia, queer exclusionism, homophobia, transphobia, enbyphobia, misogyny. + . + No one may use this Work to inflict or facilitate violence or abuse of human rights as defined in the + Universal Declaration of Human Rights. + . + No law enforcement, carceral institutions, immigration enforcement entities, military entities or military contractors + may use the Work for any reason. This also applies to any individuals employed by those entities. + . + No business entity where the ratio of pay (salaried, freelance, stocks, or other benefits) + between the highest and lowest individual in the entity is greater than 50 : 1 + may use the Work for any reason. + . + No private business run for profit with more than a thousand employees + may use the Work for any reason. + . + Unless the User has made substantial changes to the Work, + or uses it only as a part of a new work (eg. as a library, as a part of an anthology, etc.), + they are prohibited from selling the Work. + That prohibition includes processing the Work with machine learning models. + . + SANCTIONS + . + If the Licensor notifies the User that they have not complied with the rules of the license, + they can keep their license by complying within 30 days after the notice. + If they do not do so, their license ends immediately. + . + WARRANTY + . + This Work is provided “as is”, without warranty of any kind, express or implied. + The Licensor will not be liable to anyone for any damages related to the Work or this license, + under any kind of legal claim as far as the law allows. diff --git a/debian/pogmom-apps-docs.docs b/debian/pogmom-apps-docs.docs new file mode 100644 index 0000000..86ca00f --- /dev/null +++ b/debian/pogmom-apps-docs.docs @@ -0,0 +1 @@ +README.Debian diff --git a/debian/rules b/debian/rules new file mode 100755 index 0000000..2d33f6a --- /dev/null +++ b/debian/rules @@ -0,0 +1,4 @@ +#!/usr/bin/make -f + +%: + dh $@ diff --git a/debian/source/format b/debian/source/format new file mode 100644 index 0000000..89ae9db --- /dev/null +++ b/debian/source/format @@ -0,0 +1 @@ +3.0 (native)