Skip to content

Commit

Permalink
initial commit: mate-common 1.24.2 fork
Browse files Browse the repository at this point in the history
  • Loading branch information
sc0w committed Aug 19, 2020
0 parents commit 5ffc347
Show file tree
Hide file tree
Showing 30 changed files with 2,215 additions and 0 deletions.
55 changes: 55 additions & 0 deletions .build.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,55 @@
##########################################################
# THE FOLLOWING LINES IS USED BY docker-build
##########################################################
requires:
archlinux:
# Useful URL: https://git.archlinux.org/svntogit/community.git/tree/mate-common
- autoconf
- automake
- gcc
- git
- make

debian:
# Useful URL: https://github.com/mate-desktop/debian-packages
# Useful URL: https://salsa.debian.org/debian-mate-team/mate-common
- autoconf
- git
- make
- xz-utils

fedora:
# Useful URL: https://src.fedoraproject.org/cgit/rpms/mate-common.git
- autoconf
- automake
- gcc
- git
- make
- redhat-rpm-config
- xz

ubuntu:
- autoconf
- git
- make
- xz-utils

variables:
- CFLAGS="-Wall -Werror=format-security"

after_scripts:
- make distcheck

releases:
draft: false
prerelease: false
checksum: true
file_glob: true
files: mate-common-*.tar.xz
github_release:
tags: true
overwrite: true
base_version: 1.20.0
notify_servers:
- https://release.mate-desktop.org/release

9 changes: 9 additions & 0 deletions .github/FUNDING.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
# These are supported funding model platforms

github: # Replace with up to 4 GitHub Sponsors-enabled usernames e.g., [user1, user2]
patreon: # Replace with a single Patreon username
open_collective: # Replace with a single Open Collective username
ko_fi: # Replace with a single Ko-fi username
tidelift: # Replace with a single Tidelift platform-name/package-name e.g., npm/babel
community_bridge: # Replace with a single Community Bridge project-name e.g., cloud-foundry
custom: https://mate-desktop.org/donate/
19 changes: 19 additions & 0 deletions .github/issue_template.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
#### Expected behaviour


#### Actual behaviour


#### Steps to reproduce the behaviour


#### MATE general version


#### Package version


#### Linux Distribution


#### Link to downstream report of your Distribution
48 changes: 48 additions & 0 deletions .travis.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,48 @@
# vim: set ts=2 sts=2 sw=2 expandtab :
dist: bionic
language: shell
os: linux
services:
- docker
addons:
apt:
packages:
- python3-pip
- python3-setuptools

before_install:
- curl -Ls -o docker-build https://github.com/mate-desktop/mate-dev-scripts/raw/master/travis/docker-build
- chmod +x docker-build

install:
- pip3 install PyGithub
- ./docker-build --name ${DISTRO} --config .build.yml --install

script:
- ./docker-build --name ${DISTRO} --verbose --config .build.yml --build autotools

notifications:
irc:
if: (tag OR branch = "1.24") AND
repo = "mate-desktop/mate-common"
channels:
- "irc.freenode.org#mate-dev"
template:
- "[%{repository_name}] %{author}: %{commit_subject}"
- "[%{branch}] %{commit} %{message} %{build_url}"
on_success: never
on_failure: always

deploy:
- provider: script
edge: true
script: ./docker-build --verbose --config .build.yml --release github
on:
tags: true
condition: "${TRAVIS_TAG} =~ ^v.*$ && ${DISTRO} =~ ^fedora.*$"

env:
- DISTRO="archlinux:latest"
- DISTRO="debian:testing"
- DISTRO="fedora:latest"
- DISTRO="ubuntu:20.04"
3 changes: 3 additions & 0 deletions AUTHORS
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
Perberos <[email protected]>
Steve Zesch <[email protected]>
Stefano Karapetsas <[email protected]>
Loading

0 comments on commit 5ffc347

Please sign in to comment.