Commit Graph

23 Commits

Author SHA256 Message Date
Michal Vyskocil
c3c7caeede Accepting request 163755 from home:poelzi:branches:devel:libraries:c_c++
update to augeas-1.0.0

OBS-URL: https://build.opensuse.org/request/show/163755
OBS-URL: https://build.opensuse.org/package/show/devel:libraries:c_c++/augeas?expand=0&rev=41
2013-04-17 07:30:11 +00:00
Ismail Dönmez
a84af65754 Accepting request 137763 from home:babelworx:ldig:branches:devel:libraries:c_c++
license update: GPL-3.0+ and LGPL-2.1+
semicolon is ambiguous

OBS-URL: https://build.opensuse.org/request/show/137763
OBS-URL: https://build.opensuse.org/package/show/devel:libraries:c_c++/augeas?expand=0&rev=39
2012-10-10 18:55:25 +00:00
Sascha Peilicke
e7ac447ca1 Accepting request 129047 from home:a_jaeger:FactoryFix
Fix build with missing gets declaration (glibc 2.16)

OBS-URL: https://build.opensuse.org/request/show/129047
OBS-URL: https://build.opensuse.org/package/show/devel:libraries:c_c++/augeas?expand=0&rev=37
2012-07-28 10:06:53 +00:00
b3504b4e5d Accepting request 109804 from home:jengelh:branches:devel:libraries:c_c++
- Ensure libxml2 is present in .pc file

OBS-URL: https://build.opensuse.org/request/show/109804
OBS-URL: https://build.opensuse.org/package/show/devel:libraries:c_c++/augeas?expand=0&rev=35
2012-03-17 15:14:10 +00:00
Ismail Dönmez
e6b2a25725 Fix source url
OBS-URL: https://build.opensuse.org/package/show/devel:libraries:c_c++/augeas?expand=0&rev=33
2012-02-29 11:25:33 +00:00
Ismail Dönmez
e0ad7be0d4 Accepting request 107526 from home:dmacvicar:branches:devel:libraries:c_c++
- update to 0.10.0
  - support relative paths by taking them relative to the value of
    /augeas/context in all API functions where paths are used
  - add aug_to_xml to API: transform tree(s) into XML, exposed as dump-xml in
    aug_srun and augtool. Introduces dependency on libxml2
  - fix regular expression escaping. Previously, /[/]/ match either a backslash
    or a slash. Now it only matches a slash
  - path expressions: add function 'int' to convert a node value (string) to an
    integer
  - path expressions: make sure the regexp produced by empty nodesets from
    regexp() and glob() matches nothing, rather than the empty word
  - fix --autosave when running single command from command line, BZ 743023
  - aug_srun: support 'insert' and 'move' as aliases for 'ins' and 'mv'
  - aug_srun: allow escaping of spaces, quotes and brackets with \
  - aug_init: accept AUG_NO_ERR_CLOSE flag; return augeas handle even when
    initialization fails so that caller gets some details about why
    initialization failed
  - aug_srun: tolerate trailing white space in commands
  - much improved, expanded documentation of many lenses
  - always interpret lens filter paths as absolute, bug #238
  - fix bug in libfa that would incorrectly calculate the difference of a case
    sensistive and case insensitive regexp (/[a-zA-Z]+/ - /word/i would match
    'worD')
  - new builtin 'regexp_match' for .aug files to make testing regexp matching
    easier during development
  - fix 'span' command, bug #220
  - Lens changes/additions
    * Access: parse user@host and (group) in users field; field separator need
      not be surrounded by spaces
    * Aliases: allow spaces before colons

OBS-URL: https://build.opensuse.org/request/show/107526
OBS-URL: https://build.opensuse.org/package/show/devel:libraries:c_c++/augeas?expand=0&rev=32
2012-02-29 10:32:49 +00:00
47624ba2e7 Remove redundant tags/sections from specfile
OBS-URL: https://build.opensuse.org/package/show/devel:libraries:c_c++/augeas?expand=0&rev=30
2012-02-11 03:09:48 +00:00
Ismail Dönmez
16b8beb09f Accepting request 101693 from home:dmacvicar:branches:devel:libraries:c_c++
- Patch shellvars.aug to recognize SUSE specific files in 
  sysconfig (bnc#729491)

OBS-URL: https://build.opensuse.org/request/show/101693
OBS-URL: https://build.opensuse.org/package/show/devel:libraries:c_c++/augeas?expand=0&rev=28
2012-01-26 20:39:55 +00:00
Ismail Dönmez
9aab37fd69 Accepting request 84389 from home:dmacvicar:branches:devel:libraries:c_c++
- move lenses from /usr/share/libaugeas0/augeas
  to /usr/share/augeas (bnc#719199)
- move vim lenses syntax files from -lenses to -devel package

OBS-URL: https://build.opensuse.org/request/show/84389
OBS-URL: https://build.opensuse.org/package/show/devel:libraries:c_c++/augeas?expand=0&rev=26
2011-09-22 09:32:02 +00:00
Ismail Dönmez
797ad3c785 Accepting request 82854 from home:jengelh:bl-a
- Remove redundant tags/sections from specfile
- Add augeas-devel to baselibs

OBS-URL: https://build.opensuse.org/request/show/82854
OBS-URL: https://build.opensuse.org/package/show/devel:libraries:c_c++/augeas?expand=0&rev=24
2011-09-17 19:02:32 +00:00
cf8a92460d - update to 0.9.0:
- augtool: keep history in ~/.augeas/history
  - add aug_srun API function; this makes it possible to run a sequence of
    commands through the API
  - aug_mv: report error AUG_EMVDESC on attempts to move a node into one of
    its descendants
  - path expressions: allow whitespace inside names, making '/files/etc/foo
    bar/baz' a legal path, but parse [expr1 or expr2] and [expr1 and expr2]
    as the logical and/or of expr1 and expr2
  - path expressions: interpret escape sequences in regexps; since '.' does
    not match newlines, it has to be possible to write '.|\n' to match any
    character
  - path expressions: allow concatenating strings and regexps; add
    comparison operator '!~'; add function 'glob'; allow passing a nodeset
    to function 'regexp'
  - store the names of the functions available in path expressions under
    /augeas/version
  - fix several smaller memory leaks
  - Lens changes/additions
    * Aliases: allow spaces and commas in aliases (Mathieu Arnold)
    * Grub: allow "bootfs" Solaris/ZFS extension for dataset name, bug #201
      (Dominic Cleal); allow kernel path starting with a BIOS device,
      bug #199
    * Inifile: allow multiline values
    * Php: include files from Zend community edition, bug #210
    * Properties: new lens for Java properties files, bug #194 (Craig Dunn)
    * Spacevars: autoload two ldap files, bug #202 (John Morrissey)
    * Sudoers: support users:groups format in a Runas_Spec line, bug #211;
      add CSW paths (Dominic Cleal)
    * Util: allow comment_or_eol to match whitespace-only comments,

OBS-URL: https://build.opensuse.org/package/show/devel:libraries:c_c++/augeas?expand=0&rev=22
2011-08-23 23:54:32 +00:00
OBS User buildservice-autocommit
ec88564776 Updating link to change in openSUSE:Factory/augeas revision 16.0
OBS-URL: https://build.opensuse.org/package/show/devel:libraries:c_c++/augeas?expand=0&rev=4a68b0cb2b9ff378283d3004628722a3
2011-07-04 07:12:49 +00:00
Ismail Dönmez
9eaf561934 Accepting request 74913 from home:dmacvicar:branches:devel:libraries:c_c++
- fate#311042: Update augeas packages for latest puppet support 
  in SLE-11

OBS-URL: https://build.opensuse.org/request/show/74913
OBS-URL: https://build.opensuse.org/package/show/devel:libraries:c_c++/augeas?expand=0&rev=20
2011-06-30 13:00:21 +00:00
OBS User buildservice-autocommit
432e21d44d Updating link to change in openSUSE:Factory/augeas revision 14.0
OBS-URL: https://build.opensuse.org/package/show/devel:libraries:c_c++/augeas?expand=0&rev=a0720c1d1d88424e3d98271d97a27d1b
2011-05-09 07:34:58 +00:00
Cristian Rodríguez
e60459f917 Accepting request 69753 from home:dmacvicar:branches:devel:libraries:c_c++
- update to 0.8.1
  * augtool: respect autosave flag in oneshot mode, bug #193;
    fix segfault caused by unmatched bracket in path expression,
    bug #186
  * eliminate a global variable in the lexer, fixes BZ 690286
  * replace an erroneous assert(0) with a proper error message when
    none of the alternatives in a union match during saving,
    bug #183
  * improve AIX support
  * Lens changes/additions
    * Access: support the format @netgroup@@nisdomain, bug #190
    * Fstab: fix parsing of SELinux labels in the fscontext option
    * Grub: support 'device' directive for UEFI boot, bug #189; support
      'configfile' and 'background'
    * Httpd: handle continuation lines; autoload httpd.conf on
      Fedora/RHEL, BZ 688149; fix support for single-quoted
      strings
    * Iptables: support --tcp-flags, bug #157; allow blank and comment
      lines anywhere
    * Mysql: include /etc/my.cnf used on Fedora/RHEL, BZ 688053
    * NagiosCfg: parse setting multiple values on one line
      * NagiosObjects: process /etc/nagios3/objects/*.cfg
      * Nsswitch: support 'sudoers' as a database, bug #187
      * Shellvars: autoload /etc/rc.conf used in FreeBSD
      * Sudoers: support '#include' and '#includedir', bug #188
      * Yum: exclude /etc/yum/pluginconf.d/versionlock.list
- changes for 0.8.0
  * add new 'square' lens combinator
  * add new aug_span API function
  * augtool: short options for --nostdinc, --noload, and --noautoload

OBS-URL: https://build.opensuse.org/request/show/69753
OBS-URL: https://build.opensuse.org/package/show/devel:libraries:c_c++/augeas?expand=0&rev=18
2011-05-06 21:11:39 +00:00
OBS User buildservice-autocommit
7e5fdbfa7c Updating link to change in openSUSE:Factory/augeas revision 12.0
OBS-URL: https://build.opensuse.org/package/show/devel:libraries:c_c++/augeas?expand=0&rev=223d80fcfbdfad246057d7b9419fc194
2011-04-05 16:06:44 +00:00
Cristian Rodríguez
7d1ad11953 Accepting request 65995 from home:coolo:branches:openSUSE:Factory
OBS-URL: https://build.opensuse.org/request/show/65995
OBS-URL: https://build.opensuse.org/package/show/devel:libraries:c_c++/augeas?expand=0&rev=16
2011-04-04 20:16:01 +00:00
4cf964c400 Autobuild autoformatter for 58111
OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/augeas?expand=0&rev=9
2011-01-14 14:21:49 +00:00
cd34c7b8dc Accepting request 58111 from devel:libraries:c_c++
Accepted submit request 58111 from user coolo

OBS-URL: https://build.opensuse.org/request/show/58111
OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/augeas?expand=0&rev=8
2011-01-14 14:21:41 +00:00
OBS User autobuild
ac936199d9 Accepting request 50485 from devel:libraries:c_c++
Copy from devel:libraries:c_c++/augeas based on submit request 50485 from user pmullaney

OBS-URL: https://build.opensuse.org/request/show/50485
OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/augeas?expand=0&rev=7
2010-10-13 22:47:04 +00:00
OBS User autobuild
16626383e1 OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/augeas?expand=0&rev=4 2010-03-18 14:35:59 +00:00
OBS User autobuild
40a4c8a35b Accepting request 27229 from zypp:Head
Copy from zypp:Head/augeas based on submit request 27229 from user coolo

OBS-URL: https://build.opensuse.org/request/show/27229
OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/augeas?expand=0&rev=3
2009-12-21 13:09:48 +00:00
OBS User unknown
cb370d8073 OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/augeas?expand=0&rev=1 2009-04-01 21:53:51 +00:00