Login
Log in using an SSO provider:
Fedora Account System
Red Hat Associate
Red Hat Customer
Login using a Red Hat Bugzilla account
Forgot Password
Create an Account
Red Hat Bugzilla – Attachment 1611740 Details for
Bug 1749132
Too strict gir lib search pattern
Home
New
Search
Simple Search
Advanced Search
My Links
Browse
Requests
Reports
Current State
Search
Tabular reports
Graphical reports
Duplicates
Other Reports
User Changes
Plotly Reports
Bug Status
Bug Severity
Non-Defaults
Product Dashboard
Help
Page Help!
Bug Writing Guidelines
What's new
Browser Support Policy
5.0.4.rh90 Release notes
FAQ
Guides index
User guide
Web Services
Contact
Legal
[?]
This site requires JavaScript to be enabled to function correctly, please enable it.
[patch]
A less-strict template
perl-Glib-Object-Introspection_lib_pattern.patch (text/plain), 2.34 KB, created by
Vadim Raskhozhev
on 2019-09-05 01:20:49 UTC
(
hide
)
Description:
A less-strict template
Filename:
MIME Type:
Creator:
Vadim Raskhozhev
Created:
2019-09-05 01:20:49 UTC
Size:
2.34 KB
patch
obsolete
>diff -up bin/bckp1c81.orig bin/bckp1c81 >--- bin/bckp1c81.orig 2011-01-21 15:51:41.000000000 +0300 >+++ bin/bckp1c81 2012-10-03 12:02:05.000000000 +0400 >@@ -1,19 +1,36 @@ > #!/bin/sh >-# vi:noet:sta:si:ts=2:sw=2:tw=80 >+# vi:noet:sta:si:ts=2:sw=2 > > # Where to take backups from >-SRV_NAME=proxy >-SHARE_PATH='//'$SRV_NAME'/f$' >-SHARE_MP=/mnt/smb/$SRV_NAME/f >-# see crenentials in man.cifs(8) >-SHARE_AF=/root/${SRV_NAME}_authfile >-#TODO: consider that share adding to /etc/fstab with _netdev >+#srvName=proxy >+#sharePath='//'$srvName'/f$' >+#shareMP=/mnt/smb/$srvName/f >+srvName=srv-sql >+sharePath='//'$srvName'/e$' >+shareMP=/mnt/smb/$srvName/e >+# see credentials in man.cifs(8) >+shareAF=/root/${srvName}_authfile >+#TODO: consider adding that share to /etc/fstab with _netdev > >-SRC_PATH=$SHARE_MP/1CBackUps >-DST_PATH=/srv/backup/1c/81 >+#srcPath=$shareMP/1CBackUps/upp82 >+srcPath=$shareMP/BackupS/upp82 >+dstPath=/srv/backup/1c/81/upp82 > >-mount -t cifs $SHARE_PATH $SHARE_MP -o credentials=$SHARE_AF || exit $? >+#FIXME temporary > >-rsync -rut $SRC_PATH/* $DST_PATH >+[ -d $shareMP ] || mkdir -p $shareMP >+[ -d $dstPath ] || mkdir -p $dstPath > >-umount $SHARE_MP >+mount -t cifs $sharePath $shareMP -o credentials=$shareAF || exit $? >+ >+## find ... -delete finds and deletes all files not modified since the first day >+## of previous month (i. e. all files older than the 1st day of previous month). >+## See also `info coreutils 'date invocation'` >+#rsync -rut $srcPath/* $dstPath && find $srcPath \! -newermt "$(env LC_TIME=C date --date="$(date +%Y-%m-15) -1 month" +%Y-%m-01)" -type f -delete >+ >+# find ... -delete finds and deletes all files not modified since the last day >+# of previous month (i. e. all files older than the last day of previous month). >+# See also `info coreutils 'date invocation'` >+rsync -rut $srcPath/* $dstPath && find $srcPath \! -newermt "$(env LC_TIME=C date --date="$(date +%Y-%m-01) -1 day" +%Y-%m-%d)" -type f -delete >+ >+umount $shareMP >diff -up bin/perli11ndoc.orig bin/perli11ndoc >--- bin/perli11ndoc.orig 2019-09-05 03:23:21.537516800 +0300 >+++ bin/perli11ndoc 2019-09-05 03:56:55.223385953 +0300 >@@ -49,7 +49,7 @@ use XML::LibXML qw//; > sub find_gir { > my ($lib_pattern) = @_; > >- if ($lib_pattern !~ /^([^\d\-]+)-?(\d(?:\.\d)?)?$/) { >+ if ($lib_pattern !~ /^([^\d\-]\w+)-?(\d(?:\.\d)?)?$/) { > die "Cannot recognize the library name\n"; > } > my $name_wanted = $1;
You cannot view the attachment while viewing its details because your browser does not support IFRAMEs.
View the attachment on a separate page
.
View Attachment As Diff
View Attachment As Raw
Actions:
View
|
Diff
Attachments on
bug 1749132
:
1611740
|
1611743