File webpin-1.2.4-openSUSE_13.2.patch of Package webpin
Index: webpin-1.2.4/doc/webpin.8
===================================================================
--- webpin-1.2.4.orig/doc/webpin.8
+++ webpin-1.2.4/doc/webpin.8
@@ -36,12 +36,12 @@ search for matches in package names, pac
and first match in file names (default)
.TP
\fB\-d\fR VERSION, \fB\-\-dist\fR=\fIVERSION\fR
-openSUSE version to search for (defaults to 13.1, may
+openSUSE version to search for (defaults to 13.2, may
specify 'factory' for Factory or 'latest' for latest
release)
.TP
\fB\-l\fR, \fB\-\-latest\fR
-search in the latest released openSUSE version (13.1)
+search in the latest released openSUSE version (13.2)
.TP
\fB\-F\fR, \fB\-\-factory\fR
search in the openSUSE development version (Factory)
Index: webpin-1.2.4/doc/webpinrc.5
===================================================================
--- webpin-1.2.4.orig/doc/webpinrc.5
+++ webpin-1.2.4/doc/webpinrc.5
@@ -73,15 +73,11 @@ for querying by file names contained in
.TP
.B distribution
for the default openSUSE distribution version to query, with valid values being
+.BR 13.2 ,
.BR 13.1 ,
.BR 12.3 ,
.BR 12.2 ,
.BR 12.1 ,
-.BR 11.4 ,
-.BR 11.3 ,
-.BR 11.2 ,
-.BR 11.1 ,
-.BR 11.0 ,
.BR factory ,
and
.BR latest .
Index: webpin-1.2.4/webpin/const.py
===================================================================
--- webpin-1.2.4.orig/webpin/const.py
+++ webpin-1.2.4/webpin/const.py
@@ -20,7 +20,7 @@ maxRedirects = 3
mode = 'Simple'
# used when the VERSION cannot be parsed from platform.dist()
# nor /etc/SuSE-release
-defaultSuseVersion = '13.1'
+defaultSuseVersion = '13.2'
# used for --latest
latestSuseVersion = defaultSuseVersion
@@ -68,15 +68,11 @@ repoLayout = {
# Map of (open)SUSE versions to dist identifiers
# that must be used in the Package Search webservice URL:
distVersionMap = {
+ '13.2': 'openSUSE_132',
'13.1': 'openSUSE_131',
'12.3': 'openSUSE_123',
'12.2': 'openSUSE_122',
'12.1': 'openSUSE_121',
- '11.4': 'openSUSE_114',
- '11.3': 'openSUSE_113',
- '11.2': 'openSUSE_112',
- '11.1': 'openSUSE_111',
- '11.0': 'openSUSE_110',
'latest': latestSuseVersion,
'factory': 'SUSE_Factory',
'Factory': 'SUSE_Factory'