public inbox for gentoo-soc@lists.gentoo.org
 help / color / mirror / Atom feed
* [gentoo-soc] Required Information: Personal info and SCM
@ 2010-04-03 13:29 ch
  0 siblings, 0 replies; only message in thread
From: ch @ 2010-04-03 13:29 UTC (permalink / raw
  To: gentoo-soc

[-- Attachment #1: Type: text/plain, Size: 493 bytes --]

Hi,

since I want to take part in GSoC (Project: "Repository of
Self-Contained Ebuild Source Packages"), I have to show I'm able to use
a SCM-tool (test-patch attached). I used git.

I posted a simple version bump ebuild in bugzilla as well:
http://bugs.gentoo.org/show_bug.cgi?id=312949


Thanks for reading,
Constanze Hausner (nick: constanze)

Stiftsbogen 31
D-81375 Munich
Germany
Phone: +49-89-32603115
Email: ch@gmx.com
Enrolled at University of Applied Sciences Munich, Germany









[-- Attachment #2: GSoC_test.patch --]
[-- Type: text/plain, Size: 2663 bytes --]

>From 3edd6416559519d9a8bfafa28fbe596a52e563a9 Mon Sep 17 00:00:00 2001
From: Constanze Hausner <ch@gmx.com>
Date: Sat, 3 Apr 2010 14:06:25 +0200
Subject: [PATCH] To show I can use git, I made some very useful changes :)

---
 web/controller.py |   12 ++++++------
 1 files changed, 6 insertions(+), 6 deletions(-)

diff --git a/web/controller.py b/web/controller.py
index 57fc118..573f8c5 100644
--- a/web/controller.py
+++ b/web/controller.py
@@ -32,34 +32,34 @@ class Root(object):
         def f():
             entry_filter = filters.EntryFilters(self.database)
             return entry_filter.unfiltered()
-        return self.database.mc_wrap('cache_latest', f, time=300)
+        return self.database.mc_wrap('cache_latest', f, time=350)
 
     @property
     def cache_newpkgs(self):
         def f():
             entry_filter = filters.EntryFilters(self.database)
             return entry_filter.newpkgs_filter()
-        return self.database.mc_wrap('cache_newpkgs', f, time=300)
+        return self.database.mc_wrap('cache_newpkgs', f, time=350)
 
     @property
     def cache_verbumps(self):
         def f():
             entry_filter = filters.EntryFilters(self.database)
             return entry_filter.verbumps_filter()
-        return self.database.mc_wrap('cache_verbumps', f, time=300)
+        return self.database.mc_wrap('cache_verbumps', f, time=350)
     
     @property
     def cache_date(self):
         def f():
             entry_filter = filters.EntryFilters(self.database)
             return entry_filter.date_filter()
-        return self.database.mc_wrap('cache_date', f, time=300)
+        return self.database.mc_wrap('cache_date', f, time=350)
     
     @property
     def cache_categories(self):
         def f():
             return self.database.get_category_list()
-        return self.database.mc_wrap('cache_categories', f, time=300)
+        return self.database.mc_wrap('cache_categories', f, time=350)
 
     @cherrypy.expose
     @template.expire_on_30_min()
@@ -119,6 +119,7 @@ class Root(object):
         """Render the /verbump/ page as HTML"""
         # Do not complain about correct usage of ** magic
         # pylint: disable-msg=W0142
+        # additional comment
         return self._verbump(*args, **kwds)
 
     def _verbump(self, *args, **kwds):
@@ -156,7 +157,6 @@ class Root(object):
     @template.output('index.html', method='xhtml')
     def newpackage(self, *args, **kwds):
         """Render the /newpackage/ page as HTML"""
-        # Do not complain about correct usage of ** magic
         # pylint: disable-msg=W0142
         return self._newpackage(*args, **kwds)
 
-- 
1.6.4.4




^ permalink raw reply related	[flat|nested] only message in thread

only message in thread, other threads:[~2010-04-03 13:29 UTC | newest]

Thread overview: (only message) (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2010-04-03 13:29 [gentoo-soc] Required Information: Personal info and SCM ch

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox