- kaccounts-integration
- kaccounts-providers
- signon-kwallet-extension
- granatier
- kdenlive
- katomic
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
=begin | |
-git- | |
doc/CMakeLists.txt | |
doc/index.docbook | |
doc/... | |
doc/CMakeLists.txt | |
doc/directory1/CMakeLists.txt | |
doc/directory1/index.docbook |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?xml version='1.0' encoding='UTF-8'?> | |
<project> | |
<actions/> | |
<description></description> | |
<keepDependencies>false</keepDependencies> | |
<scm class="hudson.plugins.git.GitSCM" plugin="git@2.2.7"> | |
<configVersion>2</configVersion> | |
<userRemoteConfigs> | |
<hudson.plugins.git.UserRemoteConfig> | |
<name>origin</name> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<% case upstream_scm.type | |
when 'git' %> | |
<%= render("jenkins-templates/upstream-scms/git.xml.erb") %> | |
<% when 'svn' %> | |
<%= render("jenkins-templates/upstream-scms/svn.xml.erb") %> | |
<% else %> | |
<% raise "Unknown upstream_scm type encountered '#{upstream_scm.type}'" %> | |
<% end %> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/usr/bin/env ruby | |
require 'ostruct' | |
require 'optparse' | |
options = OpenStruct.new | |
OptionParser.new do |opts| | |
opts.banner = "Usage: #{opts.program_name} [options]" | |
opts.on('-v VERSION', '--version VERSION', |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/home/me/.rvm/rubies/ruby-2.2.0/bin/rake -f | |
require 'logger' | |
require 'logger/colors' | |
module FileUtils | |
alias_method :orig_sh, :sh | |
def osh(*cmd, &block) | |
bin = [*cmd].first |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/usr/bin/env ruby | |
# | |
# Copyright 2015 Harald Sitter <sitter@kde.org> | |
# | |
# This program is free software; you can redistribute it and/or | |
# modify it under the terms of the GNU General Public License as | |
# published by the Free Software Foundation; either version 2 of | |
# the License or (at your option) version 3 or any later version | |
# accepted by the membership of KDE e.V. (or its successor approved | |
# by the membership of KDE e.V.), which shall act as a proxy |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Build-Depends | |
# Build-Depends-Indep indep is for arch:all packages only https://wiki.debian.org/Build-Depends-Indep | |
# Build-Conflicts | |
# Build-Conflicts-Indep | |
# dep format https://www.debian.org/doc/debian-policy/ch-relationships.html#s-sourcebinarydeps | |
require 'test/unit' | |
class Version |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Meeting Plugin | |
class MeetingPlugin < Plugin | |
def help(_, _) | |
':meeting roll call => highlight everyone and the kitchen sink' | |
end | |
def roll_call(m, _) | |
nicks = m.channel.users.collect(&:nick) | |
nicks.reject! { |n| n == bot.nick } | |
m.reply("Roll Call! #{nicks.join(', ')}") |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<VirtualHost xxx:80> | |
ServerName xxx | |
ServerAlias xxx | |
# Pass /static/ through apache itself into the relevant dirs. | |
ProxyPassMatch ^/static/[0-9a-fA-F]{8}\/(.*)$ ! | |
AliasMatch ^/static/[0-9a-fA-F]{8}\/plugin\/(.*)$ /var/lib/jenkins/plugins/$1 | |
<Directory "/var/lib/jenkins/plugins"> | |
Options FollowSymLinks | |
AllowOverride None |
OlderNewer