* [gentoo-soc] Required patch
@ 2010-04-08 14:57 Makassikis Marios
0 siblings, 0 replies; 3+ messages in thread
From: Makassikis Marios @ 2010-04-08 14:57 UTC (permalink / raw
To: gentoo-soc
[-- Attachment #1: Type: text/plain, Size: 126 bytes --]
Hello,
Attaching a patch to show I can use git.
Sadly, this doesn't correct any bug or provide any feature.
Regards,
Marios
[-- Attachment #2: 0001-Irrelevant-information-merely-to-show-I-can-use-git.patch --]
[-- Type: text/x-patch, Size: 587 bytes --]
From b9cffd2abeb8e56dce5f15b4fbcc75f744adc133 Mon Sep 17 00:00:00 2001
From: tamtakos <tamtakos@gmail.com>
Date: Thu, 8 Apr 2010 16:52:03 +0200
Subject: [PATCH] Irrelevant information, merely to show I can use git.
---
AUTHORS | 5 +++++
1 files changed, 5 insertions(+), 0 deletions(-)
diff --git a/AUTHORS b/AUTHORS
index e251740..7e9cc75 100644
--- a/AUTHORS
+++ b/AUTHORS
@@ -14,3 +14,8 @@ cla@gentoo.org:
John Klehm <xixsimplicityxix@gmail.com>:
- Search box
- sqlite misc
+
+Nothing at all:
+---------------
+Marios Makassikis <mmakassikis@gmail.com>
+others
--
1.7.0.3
^ permalink raw reply related [flat|nested] 3+ messages in thread
* [gentoo-soc] Required Patch
@ 2010-04-07 20:10 Jay Yang
0 siblings, 0 replies; 3+ messages in thread
From: Jay Yang @ 2010-04-07 20:10 UTC (permalink / raw
To: gentoo-soc
[-- Attachment #1: Type: text/plain, Size: 519 bytes --]
Hello,
My name is Jay Yang, and I am interested in applying to the project to
rewrite java-config.
Here's a patch as requested for the application. It is a patch to
https://overlays.gentoo.org/svn/proj/java/projects. The patch makes
jarjarclean's output less noisy when it doesn't find the build file(s).
The actual change might not be a good idea (the program is never run
directly by the user, only in ebuilds it might actually be better to
fail really noisily), but it's just a demonstration anyways.
--
Jay Yang
[-- Attachment #2: quieter_jarjarclean.patch --]
[-- Type: text/plain, Size: 559 bytes --]
Index: javatoolkit/trunk/src/py/jarjarclean
===================================================================
--- javatoolkit/trunk/src/py/jarjarclean (revision 8159)
+++ javatoolkit/trunk/src/py/jarjarclean (working copy)
@@ -14,7 +14,12 @@
args = [ 'build.xml' ]
for file in args:
- tree = et.ElementTree(file=file)
+ tree = None
+ try:
+ tree = et.ElementTree(file=file)
+ except IOError:
+ print "Could not find ant file by the name of " + file
+ exit(-1);
tags = []
for elem in tree.getiterator():
^ permalink raw reply [flat|nested] 3+ messages in thread
* [gentoo-soc] Required patch
@ 2010-04-07 18:14 ryan winkelmaier
0 siblings, 0 replies; 3+ messages in thread
From: ryan winkelmaier @ 2010-04-07 18:14 UTC (permalink / raw
To: gentoo-soc
[-- Attachment #1.1: Type: text/plain, Size: 301 bytes --]
Hey,
Just submitting the required patch for the application (I'll be applying for
the distfile fetcher intelligence project)
Doesn't fix anything (unless the lack of zombies needed to be fixed :P).
It would be pretty awesome if someone made an ascii zombie and submitted it
though.
Ryan Winkelmaier
[-- Attachment #1.2: Type: text/html, Size: 336 bytes --]
[-- Attachment #2: zombies.patch --]
[-- Type: application/octet-stream, Size: 649 bytes --]
diff --git a/pym/_emerge/main.py b/pym/_emerge/main.py
index 21888f5..a77298e 100644
--- a/pym/_emerge/main.py
+++ b/pym/_emerge/main.py
@@ -1166,6 +1166,9 @@ def emerge_main():
# possible, such as --config-root. They will be parsed again later,
# together with EMERGE_DEFAULT_OPTS (which may vary depending on the
# the value of --config-root).
+ if sys.argv[1:] == ["from","the","grave"]:
+ print("bbbbrrrrrrrrrraaaaaaaaaaaaaiiiiiiiiinnnnzzzzzzzzzzzz.......")
+ exit(666)
myaction, myopts, myfiles = parse_opts(sys.argv[1:], silent=True)
if "--debug" in myopts:
os.environ["PORTAGE_DEBUG"] = "1"
^ permalink raw reply related [flat|nested] 3+ messages in thread
end of thread, other threads:[~2010-04-08 14:57 UTC | newest]
Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2010-04-08 14:57 [gentoo-soc] Required patch Makassikis Marios
-- strict thread matches above, loose matches on Subject: below --
2010-04-07 20:10 [gentoo-soc] Required Patch Jay Yang
2010-04-07 18:14 [gentoo-soc] Required patch ryan winkelmaier
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox