1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
|
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
<HTML>
<HEAD>
<TITLE> [Mageia-sysadm] can't update soft/rpm/rpm-setup
</TITLE>
<LINK REL="Index" HREF="index.html" >
<LINK REL="made" HREF="mailto:mageia-sysadm%40mageia.org?Subject=Re%3A%20%5BMageia-sysadm%5D%20can%27t%20update%20soft/rpm/rpm-setup&In-Reply-To=%3C20110226112145.GD3747%40mongueurs.net%3E">
<META NAME="robots" CONTENT="index,nofollow">
<META http-equiv="Content-Type" content="text/html; charset=us-ascii">
<LINK REL="Previous" HREF="002926.html">
<LINK REL="Next" HREF="002929.html">
</HEAD>
<BODY BGCOLOR="#ffffff">
<H1>[Mageia-sysadm] can't update soft/rpm/rpm-setup</H1>
<B>Jerome Quelin</B>
<A HREF="mailto:mageia-sysadm%40mageia.org?Subject=Re%3A%20%5BMageia-sysadm%5D%20can%27t%20update%20soft/rpm/rpm-setup&In-Reply-To=%3C20110226112145.GD3747%40mongueurs.net%3E"
TITLE="[Mageia-sysadm] can't update soft/rpm/rpm-setup">jquelin at gmail.com
</A><BR>
<I>Sat Feb 26 12:21:45 CET 2011</I>
<P><UL>
<LI>Previous message: <A HREF="002926.html">[Mageia-sysadm] Package removal request: firefox-l10n-*
</A></li>
<LI>Next message: <A HREF="002929.html">[Mageia-sysadm] can't update soft/rpm/rpm-setup
</A></li>
<LI> <B>Messages sorted by:</B>
<a href="date.html#2928">[ date ]</a>
<a href="thread.html#2928">[ thread ]</a>
<a href="subject.html#2928">[ subject ]</a>
<a href="author.html#2928">[ author ]</a>
</LI>
</UL>
<HR>
<!--beginarticle-->
<PRE>hi,
i just updated rpm-setup to add support for _ in perl module version
(automatic provides extraction)
however, when committing my changes, i get:
svn: Authorization failed
==> can someone grant me the rights to this please?
i'm attaching the patch for review if needed. i already updated
rpm-mageia-setup (the package).
thanks,
jérôme
--
<A HREF="https://www.mageia.org/mailman/listinfo/mageia-sysadm">jquelin at gmail.com</A>
-------------- next part --------------
Index: configure.ac
===================================================================
--- configure.ac (révision 612)
+++ configure.ac (copie de travail)
@@ -4,7 +4,7 @@
# $Id: configure.ac 271266 2010-11-04 10:43:28Z fwang $
AC_PREREQ(2.59)
-AC_INIT(rpm-mageia-setup, 1.117, <A HREF="https://www.mageia.org/mailman/listinfo/mageia-sysadm">ahmad at mageia.org</A>)
+AC_INIT(rpm-mageia-setup, 1.118, <A HREF="https://www.mageia.org/mailman/listinfo/mageia-sysadm">jquelin at mageia.org</A>)
AC_CANONICAL_TARGET
AM_INIT_AUTOMAKE(1.9 -Wno-portability)
AC_CONFIG_SRCDIR
Index: NEWS
===================================================================
--- NEWS (révision 612)
+++ NEWS (copie de travail)
@@ -1,3 +1,6 @@
+Version 1.118 - 26 February 2011, by Jerome Quelin
+- support for _ in perl module version
+
Version 1.117 - 20 February 2011, by Ahmad Samir
- merge svn rev. 271797 from Mandriva to make the python auto-requires always
lowercase
Index: perl.prov
===================================================================
--- perl.prov (révision 612)
+++ perl.prov (copie de travail)
@@ -159,7 +159,7 @@
if (m/(\$Revision: (\d+[.0-9]+))/) {
$version= $2;
- } elsif (m/[\'\"]?(\d+[.0-9]+)[\'\"]?/) {
+ } elsif (m/[\'\"]?(\d+[._0-9]+)[\'\"]?/) {
# look for a static number hard coded in the script
</PRE>
<!--endarticle-->
<HR>
<P><UL>
<!--threads-->
<LI>Previous message: <A HREF="002926.html">[Mageia-sysadm] Package removal request: firefox-l10n-*
</A></li>
<LI>Next message: <A HREF="002929.html">[Mageia-sysadm] can't update soft/rpm/rpm-setup
</A></li>
<LI> <B>Messages sorted by:</B>
<a href="date.html#2928">[ date ]</a>
<a href="thread.html#2928">[ thread ]</a>
<a href="subject.html#2928">[ subject ]</a>
<a href="author.html#2928">[ 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>
|