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 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924
|
libconfig-model-perl (2.021-3+deb7u1) wheezy; urgency=low
* added patch to fix problem with writing checklist
default values (which broke openssh demo).
(Closes: #691338)
-- Dominique Dumont <dod@debian.org> Sat, 27 Oct 2012 19:05:23 +0200
libconfig-model-perl (2.021-3) unstable; urgency=low
* use patch from upstream to fix unsaved changes (Closes: #681353)
Config::Model saves back data only when they are changed. To keep
track of the changes, the notify_changes method must be called
whenever a data is changed, otherwise the modifications will be
lost. The patch fix-unsaved-change add calls to the notify_change
method where it was forgotten. The second patch
(test-fix-unsaved-changes) add the relevant test cases.
-- Dominique Dumont <dod@debian.org> Fri, 13 Jul 2012 14:22:05 +0200
libconfig-model-perl (2.021-2) unstable; urgency=low
* added a patch to fix a race condition between async calls to rmadison
-- Dominique Dumont <dod@debian.org> Fri, 29 Jun 2012 14:14:02 +0200
libconfig-model-perl (2.021-1) unstable; urgency=low
* Imported Upstream version 2.021
* Debian::Dpkg
* Bump default compat level to 9 (for hardening)
* dependency model:
* Make concurrent calls to madison to reduce user wait
with AnyEvent::HTTP
* make sure that apply_fix trigger notification changes
so the fixes are indeed saved when running apply_fix
(thanks to gregoa for the heads up)
* copyright: allow any non-space character for license short name
* imported upstream
* control:
- removed dep on libwww-perl
+ added dep on libanyevent-perl.
+ added dep on libanyevent-http-perl
-- Dominique Dumont <dod@debian.org> Fri, 29 Jun 2012 13:27:39 +0200
libconfig-model-perl (2.020-1) unstable; urgency=low
* new upstream release
* Fix DEP-3 model for patch handling
* fix cme doc example (Closes: #677069)
* control: Depends on liblist-moreutils-perl
-- Dominique Dumont <dod@debian.org> Thu, 21 Jun 2012 13:19:12 +0200
libconfig-model-perl (2.019-1) unstable; urgency=low
* Imported Upstream version 2.019
(Small bug fixes and doc improvements)
-- Dominique Dumont <dod@debian.org> Tue, 05 Jun 2012 19:05:32 +0200
libconfig-model-perl (2.018-1) unstable; urgency=low
* new upstream release
+ Debian::Dependency: Added a check and fix for debhelper version
requirement taking into account compat value. This check is
available only with full dpkg model (i.e. "cme xxx dpkg"
command). It is disabled when using only dpkg-contol model ("cme
xxx dpkg-control").
* Debian::Dpkg model: fix default Vcs-Git URL for debian-perl packages
* cme: better formatting when printing changes. No more false
positives.
+ control: added dependency on lintian (used to check debhelper dep
requirement vs compat
-- Dominique Dumont <dod@debian.org> Wed, 30 May 2012 14:46:13 +0200
libconfig-model-perl (2.015-1) unstable; urgency=low
* new upstream version
* Framework changes:
* List, Hash, Value: ensure that migration is done after initial
load, i.e. once all data from configuration file is loaded.
* Value: don't trigger notify_change with update undef -> undef
-- Dominique Dumont <dod@debian.org> Mon, 14 May 2012 21:11:29 +0200
libconfig-model-perl (2.014-1) unstable; urgency=low
* new upstream version:
* cme: list changes before saving data (unless save is handled by
user interface) (HEAD, master)
* Dpkg backend: provide error messages with the line
number where the error was found. (Closes: #670441)
* control: new dependency on libtext-diff-perl
-- Dominique Dumont <dod@debian.org> Sun, 06 May 2012 10:13:54 +0200
libconfig-model-perl (2.013-1) unstable; urgency=low
* Imported Upstream version:
* Debian Dpkg model: Moved libtiff4 transition warning
from source Build-Depends to binary Depends
* Debian Dep-3 patch parser: quilt formats patch in a very concise
way. There's no Index: line and no '====='. OTOH, imported patch
may contain this lines until the patch is refreshed. This commit
makes sure that both types of patch are parsed correctly.
* Debian model: changed meta element into my-config. This should
make clear that this element stores user's config regarding dpkg
files.
* Tester: Produced file order is not important. Make sure both
list are sorted before being compared (Closes: #666705)
-- Dominique Dumont <dod@debian.org> Sat, 07 Apr 2012 19:34:55 +0200
libconfig-model-perl (2.011-3) unstable; urgency=low
* bash-completion: added forgotten file for cme
-- Dominique Dumont <dod@debian.org> Sat, 24 Mar 2012 14:07:04 +0100
libconfig-model-perl (2.011-2) unstable; urgency=low
* Set temporary $HOME during build for test suite. (Closes: #665228)
-- gregor herrmann <gregoa@debian.org> Fri, 23 Mar 2012 00:20:08 +0100
libconfig-model-perl (2.011-1) unstable; urgency=low
* Imported Upstream version 2.011:
+ Debian copyright: added deprecated License-Alias parameter.
When set to 'Perl', this parameter is migrated into
License: Artistic or GPL-1+
+ Debian DpkgSyntax: better error message. This was really annoying
for DEP-3 patch parser.
+ cme: added forgotten -stack-trace option
-- Dominique Dumont <dod@debian.org> Tue, 20 Mar 2012 12:50:35 +0100
libconfig-model-perl (2.010-1) unstable; urgency=low
* Imported Upstream version 2.010
* Debian control:
* fix warning of section and priority fields
+ added check and fix for libpng and libtiff4 transitions
* Debian Copyright: added warnings if Files uses either [ ] or |
(thanks gregoa for the suggestion)
* cme: check must check all values
-- Dominique Dumont <dod@debian.org> Wed, 14 Mar 2012 15:00:05 +0100
libconfig-model-perl (2.008-1) unstable; urgency=low
* Imported Upstream version 2.008
* Debian control:
+ comments are now parsed correctly
* Debian copyright model:
+ added support for deprecated X-Comment. X-Comment fields are converted
-- Dominique Dumont <dod@debian.org> Fri, 02 Mar 2012 12:56:29 +0100
libconfig-model-perl (2.007-1) unstable; urgency=low
* New upstream release:
- cme: fix 'migrate' command.
-- gregor herrmann <gregoa@debian.org> Sun, 26 Feb 2012 18:57:31 +0100
libconfig-model-perl (2.006-1) unstable; urgency=low
* Imported Upstream version 2.006:
* Debian control model:
* bumped default Debian source standards version to 3.9.3
- no longer try to enforce first lowercase in Synopsis.
Too many false positives (Closes: #661184)
- Removed check for virtual package (source packages are seen as
virtual packages). Unfortunately, virtual packages are now reported
as unknown packages. Suggestions on how to fix this are welcome.
* Debian copyright model:
* changed copyright type from line based list to string leaf
* Framework changes:
+ cme: added forgotten 'migrate' command (i.e. cme migrate stuff)
* control: bumped standard version to 3.9.3 (no other changes)
-- Dominique Dumont <dod@debian.org> Sat, 25 Feb 2012 15:03:14 +0100
libconfig-model-perl (2.005-1) unstable; urgency=low
* New upstream release.
* Update years of packaging copyright.
* (Build-)depend on perl 5.11.1 (for File::Path 2.07).
* Refresh patch add_dh_config (offset).
* Update Format: URL in debian/copyright.
* Remove one of the lintian overrides.
-- gregor herrmann <gregoa@debian.org> Thu, 23 Feb 2012 22:49:12 +0100
libconfig-model-perl (2.004-1) unstable; urgency=low
* Imported Upstream version 2.004:
+ new cme program to replace config-edit
* Performance improvement
* dpkg model:
+ added rules element for debian/rules file
+ contro: added migration from XC-Package-Type to Package-Type
* copyright: updated (c) years
* control:
+ added BDI on libtest-memory-cycle-perl.
+ added BD[I] on libnamespace-autoclean-perl
* Updated description and hme page
* refreshed patch to cope with new cme script
-- Dominique Dumont <dod@debian.org> Fri, 10 Feb 2012 12:49:21 +0100
libconfig-model-perl (1.265-1) unstable; urgency=low
* Imported Upstream version 1.265
* model Debian::Dpkg:
+ added Multi-Arch parameter
* don't fail when debian/copyright is missing or empty
* refreshed patch for new MANIFEST
-- Dominique Dumont <dod@debian.org> Wed, 07 Dec 2011 14:02:16 +0100
libconfig-model-perl (1.264-1) unstable; urgency=low
* Imported Upstream version 1.264:
* Application changes:
+ new multistrap model. Supports multistrap's layered configuration
* lcdproc:
* lcdconf2model.pl: added better check of info in square brackets
* lcdproc/LCDd.conf: resync with upstream lcdproc LCDd.conf
* model Debian::Dpkg: removed email checks
* bash_completion: use new Lister class to gain a lot of speed
* Updated INI file backend to take care of various conventions
* control: added BDI on libtest-file-contents-perl
-- Dominique Dumont <dod@debian.org> Wed, 30 Nov 2011 16:58:13 +0100
libconfig-model-perl (1.260-1) unstable; urgency=low
* New upstream version:
* Application changes
* Backend Debian::Dpkg: skip empty lines in patch series files
* Framework changes:
+ Config::Model::Tester: new class extracted from t/model_tests.t
to test config files and models.
-- Dominique Dumont <dod@debian.org> Sat, 29 Oct 2011 18:15:54 +0200
libconfig-model-perl (1.259-1) unstable; urgency=low
* Imported Upstream version 1.259
* Application changes
* model Debian::Dpkg: Bumped compat default value to 8
* model Debian::Dpkg::Patch: Synopsis is no longer mandatory.
Issue a warning for empty Synopsis and propose a value based
on patch name
+ model Debian::Dpkg::Meta: added email element
+ model Debian::Dpkg::Copyright::LicenseSpec: compute license
text from Software::License (requires version patched for Debian)
* Backend::Debian::Dpkg::Copyright: Rewrote parser to classify
correctly Files and Licenses paragraph even if extra fields are
prepended.
* model Debian::Dpkg::Control::Source: Vcs-browser must also accept
https URLs
* lcdproc: fixed some specs in square brackets in LCDd.conf template.
Reworked model generator to better specs in square brackets and
handle model snippets in curly brackets
* Framework changes: usual bunch of bug fixes and minor features
+ control: added libsoftware-license-perl dependency.
* control: Updated description
-- Dominique Dumont <dod@debian.org> Sun, 16 Oct 2011 18:10:03 +0200
libconfig-model-perl (1.257-1) unstable; urgency=low
* Imported Upstream version 1.257:
* Framework changes:
* config-edit: avoid deprecation warning
* C::M::AnyId: enable automatic fix of duplicated values
* C::M::Node: Create BackendMgr when read_config or write_config
is defined (Closes: #642157)
* Application changes
+ models Debian::Dpkg::Control::Binary and Source:
added duplicates warning in dependencies
+ model Debian::Dpkg::Control::Source:
compute Vcs-Browser and Vcs-Git default value for pkg-perl team
* model Debian::Dpkg::Patch: No need for a first capital letter
restriction. Look for debian patches in the correct places
* debian/copyright: fix GPL typo
-- Dominique Dumont <dod@debian.org> Fri, 23 Sep 2011 13:21:04 +0200
libconfig-model-perl (1.256-1) unstable; urgency=low
[ Dominique Dumont ]
* new upstream release
* Framework changes:
* Instance.pm, Node.pm: fix bug where -force_load option did
not work with dpkg model (takes into account force_load
with delayed loading of config files)
* Application changes
* Dpkg control model: warn (and offer to fix) duplicated
dependencies
+ Dpkg model: new compat docs and dirs parameters
* lintian-overrides: removed *.gz files (not needed)
-- Dominique Dumont <dod@debian.org> Fri, 16 Sep 2011 17:53:22 +0200
libconfig-model-perl (1.254-1) unstable; urgency=low
[ Dominique Dumont ]
* New upstream release
* Framework changes:
* AutoRead.pm: correctly handle ~ as home dir (thanks fabreg)
* Backend/ShellVar.pm: do not write global comments if
there's no data to write. I.e. don't write files containing
only coments
* Application changes:
* Backend Debian/Dpkg/Copyright.pm:
Fixed parser to avoid confusing License and License-Alias
+ model Debian/Dpkg/Control/Source.pl:
warn in case of duplicated dependencies
* Debian/Dependency.pm: Fixed handling of dependency alternates
* Backend Debian/Dpkg/Patch.pm: patch write is now working
* removed fix_dir patch (applied upstream)
* New upstream release
[Ansgar Burchardt ]
* debian/control: Convert Vcs-* fields to Git.
-- Dominique Dumont <dod@debian.org> Mon, 05 Sep 2011 14:03:17 +0200
libconfig-model-perl (1.250-1) unstable; urgency=low
* New upstream release:
* Debian Dpkg License model and backend: Reworked Licence models
to allow comments and arbitrary parameters in stand-alone
licences section (Closes: #633847)
* lintian-overrides: updated to take into account the changes above
* control: hardcoded recommended version of libmodule-corelist-perl
(Closes: #634529)
* rules: removed code that tinkered with recommended version
of libmodule-corelist-perl
-- Dominique Dumont <dod@debian.org> Sun, 24 Jul 2011 19:52:08 +0200
libconfig-model-perl (1.249-1) unstable; urgency=low
[ Fabrizio Regalli ]
* New upstream release:
* Bug fixes
* Config/Model/Debian/Dependency.pm: reworked to take buildd
limitation into account (check if Perl version is available
in sid to decide the order of the alternates dependencies)
[ gregor herrmann ]
* debian/control, debian/rules: use current version of
libmodule-corelist-perl for Recommends.
[ Dominique Dumont ]
* debian/control and copyright: updated my email address.
* control: added libmodule-corelist-perl >= 2.52 to pass non-reg tests
-- Dominique Dumont <dod@debian.org> Fri, 15 Jul 2011 18:22:57 +0200
libconfig-model-perl (1.248-1) unstable; urgency=low
* New upstream release
* Added myself to Uploaders and Copyright.
* Switch d/compat to 8.
* Build-Depends: switch to debhelper (>= 8).
* Added fix_dir.patch.
-- Fabrizio Regalli <fabreg@fabreg.it> Wed, 06 Jul 2011 09:56:15 +0200
libconfig-model-perl (1.247-1) unstable; urgency=low
* New upstream release (Fix issue is INI backend
triggered by default LCDd.conf file)
- Removed spelling patch (applied upstream)
-- Dominique Dumont <domi.dumont@free.fr> Tue, 28 Jun 2011 13:31:02 +0200
libconfig-model-perl (1.246-1) unstable; urgency=low
[ Dominique Dumont ]
* New upstream release:
* Application changes:
* models Debian::Dpkg::Copyright::License:
Allow any license exception keyword (closes: #627874)
+ New model for lcdproc:
The model for lcdproc (LCDd) is generated from the template
LCDd.conf file provided by lcdproc project. This model can be
generated by running Dist::Zilla (when working from Mercurial) or
by running Build.PL (when working from Config::Model Perl
distribution).
* Framework changes:
* IniFile backend: Do not write twice leaf comments. When check is
set to 'no', discard data that belongs to unavailable elements
* debian/control:
+ mention lcdproc in description.
+ Added "Enhances: lcdproc"
+ debian/patches: added spelling patch to fix generated lcdproc doc
+ debian/copyright: updated with lcdproc files. Updated my e-mail.
[ gregor herrmann ]
* Refresh patch add_dh_config (offset).
-- Dominique Dumont <domi.dumont@free.fr> Thu, 23 Jun 2011 17:32:46 +0200
libconfig-model-perl (1.244-1) unstable; urgency=low
* New upstream release
* Fstab model: Prevent wrong value in fs_passno and fs_freq with
bound mount point
+ Dpkg: Added doc for control Architecture. Fix pod doc in DpkgSyntax
backend
+ config-edit: added -search and -narrow-search options. This options
enable search in tree element, values and tree documentation.
* config-edit: cleaned up option names (always accept '-' in place of '_')
- removed fix_perl_group_filter patch (applied upstream)
-- Dominique Dumont <domi.dumont@free.fr> Tue, 17 May 2011 14:49:11 +0200
libconfig-model-perl (1.243-1) unstable; urgency=low
* New upstream release:
* dpkg control: bumped standard version to 3.9.2
* dpkg: fix spelling . Closes RT# 67783 and 67784. Thanks carnil
* dpkg control license: tweaked grammar to accept commas in license
fields. Closes: #624305. Thanks Niko Tyni.
* Dpkg/Control/Source.pl : added XS-Python-Version and X-Python-Version
(first step to solve Debian #624321)
* Debian Dpkg Meta model: package filter is computed from group-filter
OR private policy
* reworked warp registration mechanism (Changed inherited WarpedThing
into delegation to new Warper class)
* debian/patches:
+ refreshed fix_perl_group_filter
- removed bump-standard-version (applied upstream)
- removed fix-typo-for-dpkg-source-manpage and
fix-spelling-error-in-manpage.patch (applied
upstream)
-- Dominique Dumont <domi.dumont@free.fr> Thu, 05 May 2011 13:53:28 +0200
libconfig-model-perl (1.242-1) unstable; urgency=low
[ Dominique Dumont ]
* New upstream release
- dpkg control: added Build-Conflicts field
- dpkg: Added model for debian/source/options
and debian/clean files
* refreshed bump-standard-version patch
* control: set standard version to 3.9.2 (no other changes)
[ Salvatore Bonaccorso ]
* Add fix-typo-for-dpkg-source-manpage.patch patch to fix references
to dpkg-source manpage.
* Add fix-spelling-error-in-manpage.patch patch to fix some spelling
errors in manpages.
-- Dominique Dumont <domi.dumont@free.fr> Tue, 26 Apr 2011 14:21:15 +0200
libconfig-model-perl (1.241-1) unstable; urgency=low
* New upstream release (bug fixes)
* control: added libtest-differences-perl to BDI
* new patch: bump-standard-version in control model
* README.debian: rewrote a sentence to keep lintian happy
* added fix_perl_group_filter patch to set pkg-perl group
dependency filter to older than etch
-- Dominique Dumont <domi.dumont@free.fr> Fri, 08 Apr 2011 15:04:29 +0200
libconfig-model-perl (1.240-1) unstable; urgency=low
* New upstream release:
- dpkg model:
o can now tune the cleanup of versioned dependencies
o dependency warns if a package is unknown
o can update e-mail addresses depending on meta-parameters
- all models are now documented in their own man pages
- replaced Moose dependency with Any::Moose
- Model: added author, copyright, license fields.
- config-edit: new -gen-pod option to generate pod document
from config class
* control:
- BDI and depends: replaced libmoose* dependencies with
libmouse-perl, libmousex-nativetraits-perl, libany-moose-perl
libmousex-strictconstructor-perl
- BDI and depends: added libfile-homedir-perl, libpod-pom-perl
- BDI: added libfile-slurp-perl
* refreshed patch add_dh_config
* added libconfig-model-perl.lintian-overrides
* New upstream release
-- Dominique Dumont <domi.dumont@free.fr> Tue, 05 Apr 2011 19:37:52 +0200
libconfig-model-perl (1.235-1) unstable; urgency=low
* New upstream release:
- dpkg control source model: Encourage Standard-Version 3.9.1
- dpkg control dependency: only versions older than old-stable (i.e.
not found on madison) will trigger a warning
- dpkg copyright: Handle license in header (Closes: #614776)
- Dpkg copyright backend: skip empty copyright lines
- config-edit: Force to load all sub-models (i.e. control, copyright) of
a top-model (err.. dpkg) when run with option -ui none
-- Dominique Dumont <domi.dumont@free.fr> Tue, 01 Mar 2011 17:30:53 +0100
libconfig-model-perl (1.234-1) unstable; urgency=low
* New upstream release
- Fix bad handling of leaf type Ini backend
(Thanks Krzysztof for the notice)
-- Dominique Dumont <domi.dumont@free.fr> Wed, 23 Feb 2011 09:59:03 +0100
libconfig-model-perl (1.233-1) unstable; urgency=low
* New upstream release
- dpkg control source model: Added DM-Upload-Allowed and
all Vcs-* tags defined in Debian reference guide (Peter Pentchev)
- Backend Ini file: Fixed comment handling
- All modules: Improved synopsis. You can now save them in a file and
have a working program
* control: changed my e-mail address
-- Dominique Dumont <domi.dumont@free.fr> Sun, 13 Feb 2011 18:50:56 +0100
libconfig-model-perl (1.232-1) unstable; urgency=low
* New upstream release:
- Debian::Dependency: reworked to reduce calls to madison. Report
available versions when unnecessary version issue is found. Source
is optional.
- dpkg control model: added forgotten Enhances and
Pre-Depends. Added warnings for too long lines in Descriptiom
(plus fix based on Text::Autoformat). Added Synopsis element to
better tune warnings and fixes
* control: added dependency on libtext-autoformat-perl
-- Dominique Dumont <dominique.dumont@hp.com> Sun, 30 Jan 2011 19:04:04 +0100
libconfig-model-perl (1.230-1) unstable; urgency=low
* New upstream release
- Debian::Dependency: don't check debhelper version
- Debian::Copyright: removed license keyword warnings. (Closes: #610242),
lots of other bug fixes (Closes: #609889, #610231)
- FuseUI: Fix bug that disabled write in a boolean value
* copyright: updated to candidate dep-5 format (dogfooding mode ;-) )
-- Dominique Dumont <dominique.dumont@hp.com> Fri, 21 Jan 2011 13:23:50 +0100
libconfig-model-perl (1.229-1) unstable; urgency=low
[ Dominique Dumont ]
* New upstream release:
- Debian::Dpkg::Copyright: updated to new CANDIDATE DEP-5
specification. Copyright files written for older specifications
are migrated to the new specification. This should save a lot of
typing from my fellow Debian packagers. Feedbacks are welcome.
- Value.pm: warn_if_match and warn_unless_match can speficy
instructions to "fix" the value.
- config-edit: added -apply-fixes option to apply the fixes mentioned
above
- Debian::Dependency: new class derived from Value to provide checks
specific to Debian dependencies (syntax, whether a "(>= vers)" is
necessary or not, ... )
[ Jonathan Yu ]
* No longer install README, it is autogenerated
* Update copyright information
* Add dependency on libapt-pkg-perl (for AptPkg::Version) and libwww-
perl (for LWP::Simple)
-- Dominique Dumont <dominique.dumont@hp.com> Tue, 11 Jan 2011 14:02:53 +0100
libconfig-model-perl (1.226-1) unstable; urgency=low
[ Salvatore Bonaccorso ]
* debian/control:
- Add libpath-class-perl to Build-Depends-Indep.
- Add libfuse-perl and fuse-utils to Recommends.
- Add libmoosex-singleton-perl to (Build-)Depends(-Indep).
- Change unversioned Build-Depends-Indep on libtest-command-perl to
versioned libtest-command-perl (>= 0.08).
[ Dominique Dumont ]
* New upstream release:
- config-edit: added virtual file system (Fuse) interface where each
config parameter is mapped to a file (-ui fuse option)
* debian/control:
- Add available models and UIs in description
- Add libconfig-model-tkui-perl in Suggests
-- Dominique Dumont <dominique.dumont@hp.com> Thu, 09 Dec 2010 14:19:45 +0100
libconfig-model-perl (1.223-1) unstable; urgency=low
* New upstream release
* debian/control:
- Add libprobe-perl-perl to Build-Depends-Indep.
- Add libhash-merge-perl (>= 0.12) and libmoosex-strictconstructor-perl
to (Build-)Depends(-Indep).
-- Salvatore Bonaccorso <carnil@debian.org> Mon, 29 Nov 2010 12:13:19 +0100
libconfig-model-perl (1.222-1) unstable; urgency=low
* New upstream release
-- Salvatore Bonaccorso <carnil@debian.org> Tue, 23 Nov 2010 07:46:31 +0100
libconfig-model-perl (1.221-1) unstable; urgency=low
* New upstream release:
- new config editor for /etc/fstab
- new -application option for config-edit
- new manual and cookbook docs
* libconfig-model-perl.bash-completion: new file
* rules: added --with bash-completion
* control:
- added build dependency on libtest-command-perl
- added dependency on bash-completion (>= 1:1.0-3)
* removed fix-* patches (applied upstream)
-- Dominique Dumont <dominique.dumont@hp.com> Sun, 21 Nov 2010 21:10:38 +0100
libconfig-model-perl (1.220-1) unstable; urgency=low
* New upstream release
* Refresh add_dh_config patch.
* debian/copyright: Refer to Debian systems in general instead of
Debian GNU/Linux systems.
* debian/control: Drop libtext-template-perl Build-Depends-Indep.
* Add fix-spelling-error-in-manpage.patch to fix small spelling error
in manpage.
* Add fix-manpage-has-bad-whatis-entry.patch patch to fix whatis
entries for manpages.
-- Salvatore Bonaccorso <carnil@debian.org> Fri, 12 Nov 2010 11:17:36 +0100
libconfig-model-perl (1.217-1) unstable; urgency=low
* New upstream release (small bug fix, improved Fstab example)
* Refresh patch add_dh_config.
-- Dominique Dumont <dominique.dumont@hp.com> Sat, 30 Oct 2010 15:06:06 +0200
libconfig-model-perl (1.216-1) unstable; urgency=low
* New upstream release (mostly bug and doc fixes)
-- Dominique Dumont <dominique.dumont@hp.com> Tue, 26 Oct 2010 18:17:56 +0200
libconfig-model-perl (1.215-1) unstable; urgency=low
[ Dominique Dumont ]
* New upstream release (Closes: #597794, #597795):
- Dep5 is renamed in Dpkg::Copyright
- command line is config-edit-dpkg-copyright
- new model for Dpkg control file (with config-edit-dpkg-control
command)
- Model can be tuned so that config-edit-* will issue warning
regarding configuration data when needed
- Copyright model: warn if unknown license is used.
- Deprecated some over-complicated stuff. This change may trigger a lot of
warning with old Config::Model::* modules
[ Salvatore Bonaccorso ]
* Update my email address.
[ gregor herrmann ]
* Refresh patch add_dh_config.
-- Dominique Dumont <dominique.dumont@hp.com> Tue, 19 Oct 2010 18:01:59 +0200
libconfig-model-perl (1.209-1) unstable; urgency=low
* New upstream release (Fixed Debian::Dep5 read/write backend)
-- Dominique Dumont <dominique.dumont@hp.com> Mon, 20 Sep 2010 22:26:22 +0200
libconfig-model-perl (1.208-1) unstable; urgency=low
* New upstream release:
- new DEP-5 parser (with DEP-5 model and config-edit-dep5 command)
* debian/control:
- removed dependency on libconfig-tiny-perl
-- Dominique Dumont <dominique.dumont@hp.com> Fri, 17 Sep 2010 13:11:09 +0200
libconfig-model-perl (1.206-1) unstable; urgency=low
* New upstream release
* Refresh debian/copyright: Add Krzysztof Tyszecki to upstream
copyright stanza.
* Refresh add_dh_config patch.
* debian/control:
- Update alternate Build-Depends on perl (>= 5.10.1)
| libmodule-build-perl (>= 0.34).
- Make versioned Build-Depends-Indep on libparse-recdescent-perl
unversioned.
- Make versioned Build-Depends-Indep on liblog-log4perl-perl
unversioned.
* Bump Standards-Version to 3.9.1.
-- Salvatore Bonaccorso <salvatore.bonaccorso@gmail.com> Sat, 14 Aug 2010 09:47:32 +0200
libconfig-model-perl (1.205-1) unstable; urgency=low
* New upstream release (Closes: #582915)
* Add myself to Uploaders.
* Refresh debian/copyright: Update debian/* packaging stanza and
update Format-Specification revision.
* debian/patches: refresh add_dh_config patch.
-- Salvatore Bonaccorso <salvatore.bonaccorso@gmail.com> Thu, 10 Jun 2010 21:17:06 +0200
libconfig-model-perl (1.204-1) unstable; urgency=low
* New upstream release
* Refresh the dh_config patch
-- Jonathan Yu <jawnsy@cpan.org> Fri, 04 Jun 2010 20:32:42 -0400
libconfig-model-perl (1.202-1) unstable; urgency=low
[ Jonathan Yu ]
* New upstream release
* Adds dependency on Moose per upstream
* Move Uploaders below Maintainer, it looks more natural
* Rewrite long description a bit
[ gregor herrmann ]
* debian/copyright: point to /usr/share/common-licenses/LGPL-2.1.
-- Jonathan Yu <jawnsy@cpan.org> Sat, 01 May 2010 23:48:20 -0400
libconfig-model-perl (1.001-1) unstable; urgency=low
* New upstream release:
- new config-edit-popcon command
- new shell script read/write backend
- configuration values can be checked with a regular expression
* debian/libconfig-model-perl.docs: added MODELS file
* debian/control: added build-depends on libtext-template-perl
* refreshed add_dh_config patch
-- Dominique Dumont <dominique.dumont@hp.com> Sun, 28 Mar 2010 17:53:26 +0200
libconfig-model-perl (0.644-1) unstable; urgency=low
* New upstream release
* Add myself to Uploaders and Copyright
* Rename README.debian to README.Debian
* Use new 3.0 (quilt) source format
-- Jonathan Yu <jawnsy@cpan.org> Sat, 13 Mar 2010 15:40:24 -0500
libconfig-model-perl (0.643-1) unstable; urgency=low
[ Dominique Dumont ]
* New upstream release:
- new YAML backend (read/write YAML config files)
- hash and list parameter name changed: min -> min_index,
max -> max_index. This change is backward compatible.
* debian/control:
- added build and run time dependency on libyaml-perl,
- updated Standard-Version to 3.8.4
[ Franck Joncourt ]
* Made short description a noun phrase.
-- Dominique Dumont <dominique.dumont@hp.com> Thu, 25 Feb 2010 18:36:34 +0100
libconfig-model-perl (0.642-1) unstable; urgency=low
[ Dominique Dumont ]
* New upstream release (mostly bug fix and doc updates)
[ gregor herrmann ]
* debian/copyright: update years of upstream and packaging copyright.
* New patch spelling: fixes some spelling errors.
-- Dominique Dumont <dominique.dumont@hp.com> Sat, 23 Jan 2010 13:56:10 +0100
libconfig-model-perl (0.640-4) unstable; urgency=low
* Removed debconf question as it was not a good idea (as discussed
on debian-devel), thus also removed lintian overrides
* README.debian: clarified developer's jobs
-- Dominique Dumont <dominique.dumont@hp.com> Wed, 23 Dec 2009 20:08:45 +0100
libconfig-model-perl (0.640-3) unstable; urgency=low
[ Dominique Dumont ]
* Added README.debian to explain templates/debconf stuff
* dh_config_model_upgrade: setup debconf question to ask whether to use
config-model to upgrade configuration data in target package.
[ gregor herrmann ]
* debian/control: Changed: (build-)depend on perl instead of perl-
modules.
[ Dominique Dumont ]
* dh_config_model_upgrade: A template is provided for this
question. This template will be used and shipped with target
package. Added -edit_option whose value is passed verbatim to
config-edit command.
* control: mention configuration upgrade in description
-- Dominique Dumont <dominique.dumont@hp.com> Mon, 30 Nov 2009 17:46:31 +0100
libconfig-model-perl (0.640-2) unstable; urgency=low
* dh_config_model_upgrade: correctly pass versioned dependency when
calling addsubstvar (ie. with '>= ')
-- Dominique Dumont <dominique.dumont@hp.com> Mon, 14 Sep 2009 14:37:20 +0200
libconfig-model-perl (0.640-1) unstable; urgency=low
[ Dominique Dumont ]
* New upstream release (WizardHelper bug fix)
[ gregor herrmann ]
* Add build dependency on libtest-exception-perl.
-- Dominique Dumont <dominique.dumont@hp.com> Thu, 10 Sep 2009 13:11:56 +0200
libconfig-model-perl (0.639-1) unstable; urgency=low
[ Dominique Dumont ]
* New upstream release
* control: updated Standard-Version to 3.8.3
[ gregor herrmann ]
* Simplify debian/rules.
-- Dominique Dumont <dominique.dumont@hp.com> Tue, 08 Sep 2009 13:41:27 +0200
libconfig-model-perl (0.638-2) unstable; urgency=low
[ Dominique Dumont ]
* added dh_config_model_upgrade, Debconf sequence addon (config_model.pm)
and postinst snippet in debian/dh
* added patch (with headers) to handle dh_config_model_upgrade delivery
in Build.PL
* libconfig-model-perl.install: new file to deliver postinst snippet
and debconf sequence add-on
* rules: added --with quilt
[ gregor herrmann ]
* debian/control: adjust Build-Depends to quilt usage.
* Add debian/README.source to document quilt usage, as required by
Debian Policy since 3.8.0.
-- Dominique Dumont <dominique.dumont@hp.com> Mon, 27 Jul 2009 13:03:36 +0200
libconfig-model-perl (0.638-1) unstable; urgency=low
* New upstream release: small bug fix
-- Dominique Dumont <dominique.dumont@hp.com> Wed, 01 Jul 2009 15:17:25 +0200
libconfig-model-perl (0.637-1) unstable; urgency=low
[ Nathan Handler ]
* debian/watch: Update to ignore development releases.
[ Dominique Dumont ]
* New upstream release : Following Jonas Smedegaard's suggestion, leaf
'built_in' parameter was replaced with 'upstream_default'. This new
name should be easier to understand for users. This change will
trigger warnings with existing model. See upstream ChangeLog to get
rid of them.
[ gregor herrmann ]
* Set Standards-Version to 3.8.2 (no changes).
-- Dominique Dumont <dominique.dumont@hp.com> Thu, 25 Jun 2009 17:37:11 +0200
libconfig-model-perl (0.636-1) unstable; urgency=low
* New upstream release.
-- gregor herrmann <gregoa@debian.org> Sun, 31 May 2009 16:32:34 +0200
libconfig-model-perl (0.635-1) unstable; urgency=low
* New upstream release:
- Added -dump and -load options to config-edit.
- Added 'summary' field so configuration elements can have a
short description (along with the usual long description).
- Read and write call-back are now passed an opened file-handle
(if possible).
* debian/control: set Standards-Version to 3.8.1
-- Dominique Dumont <dominique.dumont@hp.com> Tue, 21 Apr 2009 13:58:04 +0200
libconfig-model-perl (0.634-1) unstable; urgency=low
* New upstream release.
* Update debian/copyright.
* Add /me to Uploaders.
* debian/control: slightly rephrase long description.
-- gregor herrmann <gregoa@debian.org> Fri, 06 Mar 2009 20:22:03 +0100
libconfig-model-perl (0.633-1) unstable; urgency=low
* Initial Release. (Closes: #493308)
-- Dominique Dumont <dominique.dumont@hp.com> Thu, 18 Dec 2008 13:43:38 +0100
|