- 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
#!/usr/bin/env ruby | |
# frozen_string_literal: true | |
# | |
# Copyright (C) 2016 Harald Sitter <sitter@kde.org> | |
# | |
# This library is free software; you can redistribute it and/or | |
# modify it under the terms of the GNU Lesser General Public | |
# License as published by the Free Software Foundation; either | |
# version 2.1 of the License, or (at your option) version 3, or any | |
# later version accepted by the membership of KDE e.V. (or its |
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
diff --git a/kcm/kcm.cpp b/kcm/kcm.cpp | |
index b6fd7b5..d571c9a 100755 | |
--- a/kcm/kcm.cpp | |
+++ b/kcm/kcm.cpp | |
@@ -31,7 +31,8 @@ | |
//#include <KDE/KAboutData> | |
#include <kauthaction.h> | |
#include <KF5/KAuth/KAuthActionReply> | |
-#include <kaoutdata.h> | |
+#include <KF5/KAuth/KAuthExecuteJob> |
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 |
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
# 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
#!/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
#!/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 | |
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
<% 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 %> |