summaryrefslogtreecommitdiffstats
path: root/zarb-ml/mageia-sysadm/2011-January/002441.html
diff options
context:
space:
mode:
Diffstat (limited to 'zarb-ml/mageia-sysadm/2011-January/002441.html')
-rw-r--r--zarb-ml/mageia-sysadm/2011-January/002441.html129
1 files changed, 129 insertions, 0 deletions
diff --git a/zarb-ml/mageia-sysadm/2011-January/002441.html b/zarb-ml/mageia-sysadm/2011-January/002441.html
new file mode 100644
index 000000000..557ebb708
--- /dev/null
+++ b/zarb-ml/mageia-sysadm/2011-January/002441.html
@@ -0,0 +1,129 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-sysadm] [339] - add switches to have a less verbose module
+ </TITLE>
+ <LINK REL="Index" HREF="index.html" >
+ <LINK REL="made" HREF="mailto:mageia-sysadm%40mageia.org?Subject=Re%3A%20%5BMageia-sysadm%5D%20%5B339%5D%20-%20add%20switches%20to%20have%20a%20less%20verbose%20module&In-Reply-To=%3C20110125004032.C94A343064%40valstar.mageia.org%3E">
+ <META NAME="robots" CONTENT="index,nofollow">
+ <META http-equiv="Content-Type" content="text/html; charset=us-ascii">
+ <LINK REL="Previous" HREF="002429.html">
+ <LINK REL="Next" HREF="002442.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-sysadm] [339] - add switches to have a less verbose module</H1>
+ <B>root at mageia.org</B>
+ <A HREF="mailto:mageia-sysadm%40mageia.org?Subject=Re%3A%20%5BMageia-sysadm%5D%20%5B339%5D%20-%20add%20switches%20to%20have%20a%20less%20verbose%20module&In-Reply-To=%3C20110125004032.C94A343064%40valstar.mageia.org%3E"
+ TITLE="[Mageia-sysadm] [339] - add switches to have a less verbose module">root at mageia.org
+ </A><BR>
+ <I>Tue Jan 25 01:40:32 CET 2011</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="002429.html">[Mageia-sysadm] Current bugzilla status
+</A></li>
+ <LI>Next message: <A HREF="002442.html">[Mageia-sysadm] [340] Check dependencies on x86_64 as this is where the src. rpm is generated
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#2441">[ date ]</a>
+ <a href="thread.html#2441">[ thread ]</a>
+ <a href="subject.html#2441">[ subject ]</a>
+ <a href="author.html#2441">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE>Revision: 339
+Author: misc
+Date: 2011-01-25 01:40:32 +0100 (Tue, 25 Jan 2011)
+Log Message:
+-----------
+- add switches to have a less verbose module
+
+Modified Paths:
+--------------
+ build_system/mdv-youri-core/trunk/lib/Youri/Repository/Mageia_upload.pm
+
+Modified: build_system/mdv-youri-core/trunk/lib/Youri/Repository/Mageia_upload.pm
+===================================================================
+--- build_system/mdv-youri-core/trunk/lib/Youri/Repository/Mageia_upload.pm 2011-01-22 14:49:03 UTC (rev 338)
++++ build_system/mdv-youri-core/trunk/lib/Youri/Repository/Mageia_upload.pm 2011-01-25 00:40:32 UTC (rev 339)
+@@ -326,7 +326,7 @@
+
+ # if have section already, check if it exists, and may return immediately
+ if ($section) {
+- print &quot;Using requested section $section\n&quot;;
++ print &quot;Using requested section $section\n&quot; if $self-&gt;{_verbose};
+ if ($media-&gt;{$arch}{$section}) {
+ return $section
+ } else {
+@@ -374,7 +374,7 @@
+ # first try to find section for the specific version, as it is possibly already there;
+ # this is the case for when called in Youri::Submit::Action::Archive, to find the
+ # section the package got installed
+- print &quot;Looking for package $name with version $version-$release\n&quot;;
++ print &quot;Looking for package $name with version $version-$release\n&quot; if $self-&gt;{_verbose};
+ foreach my $m (keys %{$media-&gt;{$arch}}) {
+ print &quot; .. section '$m' path '&quot;.$media-&gt;{$arch}{$m}.&quot;'\n&quot; if $self-&gt;{_verbose};
+ # - prefer source for non-debug packages, use binary if there is no source media configured
+@@ -429,7 +429,7 @@
+ # next time we don't need to search everything again
+ $self-&gt;{packages}{$file}{section} = $section;
+
+- print &quot;Section is '$section'.\n&quot;;
++ print &quot;Section is '$section'.\n&quot; if $self-&gt;{_verbose};
+
+ return $section;
+ }
+@@ -453,7 +453,7 @@
+ s/^\@\d+://;
+ return if ! /^$pattern/;
+ return if /\.info$/;
+- print &quot;Find $_\n&quot;;
++ print &quot;Find $_\n&quot; if $self-&gt;{_verbose} &gt; 1;
+ push @packages, $File::Find::name if $package-&gt;check_ranges_compatibility(&quot;== $name&quot;, &quot;&lt; $_&quot;)
+ }, $path);
+ }
+@@ -472,7 +472,7 @@
+
+ my $svn_entry = $ctx-&gt;ls(&quot;$self-&gt;{_svn}/$srpm_name&quot;, 'HEAD', 0);
+ if ($svn_entry) {
+- print &quot;Package $srpm_name is in the SVN\n&quot;;
++ print &quot;Package $srpm_name is in the SVN\n&quot; if $self-&gt;{_verbose};
+ return 1
+ }
+ }
+-------------- next part --------------
+An HTML attachment was scrubbed...
+URL: &lt;/pipermail/mageia-sysadm/attachments/20110125/379893a4/attachment.html&gt;
+</PRE>
+
+
+
+
+
+
+
+
+
+
+
+
+<!--endarticle-->
+ <HR>
+ <P><UL>
+ <!--threads-->
+ <LI>Previous message: <A HREF="002429.html">[Mageia-sysadm] Current bugzilla status
+</A></li>
+ <LI>Next message: <A HREF="002442.html">[Mageia-sysadm] [340] Check dependencies on x86_64 as this is where the src. rpm is generated
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#2441">[ date ]</a>
+ <a href="thread.html#2441">[ thread ]</a>
+ <a href="subject.html#2441">[ subject ]</a>
+ <a href="author.html#2441">[ author ]</a>
+ </LI>
+ </UL>
+
+<hr>
+<a href="https://www.mageia.org/mailman/listinfo/mageia-sysadm">More information about the Mageia-sysadm
+mailing list</a><br>
+</body></html>