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
|
attr (1:2.4.48-6) unstable; urgency=medium
* Update French translation. Closes: #942092
Thanks to Jean-Pierre Giraud <jenapierregiraud75@free.fr>.
* Switch to Standards-Version 4.5.1 (no changes needed).
* Switch to debhelper compatibility level 13.
* Do not pass --add-uedb to dh_makeshlibs, it is handled automatically now.
* Add include/attr to debian/clean to fix building twice in a row.
* Add Forwarded information to patches.
* Install xattr.conf from the staged installation directory instead of the
source directory.
* Switch to the dh sequencer.
* Add debian/upstream/metadata file.
-- Guillem Jover <guillem@debian.org> Thu, 24 Dec 2020 15:58:08 +0100
attr (1:2.4.48-5) unstable; urgency=medium
* Switch to debhelper-compat (= 12) in Build-Depends from debian/compat.
* Switch to Standards-Version 4.4.0 (no changes needed).
* Update Dutch translation. Closes: #925922
Thanks to Frans Spiesschaert <Frans.Spiesschaert@yucom.be>.
* Fix attr(1) man page to remove the notion that it is XFS-specific.
Closes: #883661
* Fix man pages to stop using mdoc specific macros.
* Fix cross-compilation for musl-based systems by bumping the minimum
required gettext version to the one that stopped checking for internal
GNU gettext symbols, which musl does not provide.
-- Guillem Jover <guillem@debian.org> Tue, 24 Sep 2019 04:17:57 +0200
attr (1:2.4.48-4) unstable; urgency=medium
* Replace gettext with autopoint in autopkgtest Depends fields.
-- Guillem Jover <guillem@debian.org> Fri, 01 Mar 2019 23:03:21 +0100
attr (1:2.4.48-3) unstable; urgency=medium
* Run «autoreconf -f -i» in autopkgtests to handle modified build system
sources due to patching, triggering regeneration of the build system,
and failing because the exact tool versions are not available.
-- Guillem Jover <guillem@debian.org> Fri, 01 Mar 2019 13:38:28 +0100
attr (1:2.4.48-2) unstable; urgency=medium
* Run upstream test suite separately from the build, so that we can ignore
just the test suite errors. This was in practice not a problem as we then
call the install target, so we'd catch errors later on, but still wrong.
* Remove now unnecessary debian/clean file.
* Fix silent and verbose builds:
- Only pass VERBOSE=1 to the check target where it is relevant.
- Pass --disable-silent-rules to configure only when terse is not present.
* Remove spurious escaped newline in «make install».
* Uniformize assignment of --build and --host options for configure.
* Reorder .PHONY entries.
* Add minimally required build dependencies to autopkgtest Depends fields.
* Rename attr-autoconf-version-check.patch to
build-require-autoconf-version.patch and improve its description fields.
-- Guillem Jover <guillem@debian.org> Fri, 01 Mar 2019 01:26:21 +0100
attr (1:2.4.48-1) unstable; urgency=medium
* New upstream release.
- Add upstream signing key, and modify debian/watch file to fetch and
check orig tarball signatures.
- Refresh patches:
+ 00-no-debian-Makefile.patch: Remove, fixed upstream.
+ 01-configure.in.patch: Ditto.
+ 02-687531-fix-missing-ldflags.patch: Ditto.
+ 15-test-perl-warning.patch: Update, rename to test-perl-warning.patch.
+ 12-643587-attr-autoconf-version-check.patch: Update, rename to
attr-autoconf-version-check.patch.
- Make the syscall wrappers be Linux-specific again.
+ syscalls-linux.patch: New patch.
- Upstream removed the <attr/xattr.h> header, put a compat header back
that uses <sys/xattr.h> for the heavy lifting. Closes: #782428
+ compat-xattr-header.patch: New patch.
- Pull patches from upstream git master:
+ 0001-test-escape-left-brace-in-a-regex-in-test-run.patch
+ 0002-man-fix-bold-style-in-SEE-ALSO-section.patch
+ 0003-man-standardize-AUTHORS-section.patch
+ 0004-Enable-large-file-support-on-systems-that-do-not-ena.patch
+ 0005-getfattr.1-by-default-only-user-namespace-attributes.patch
+ 0006-attr_list.3-Fix-the-attributes.h-include-path.patch
+ 0007-Switch-back-to-syscall.patch
+ 0008-attr_multi-attr_multif-Don-t-set-errno-to-EINVAL.patch
+ 0009-attr_list-attr_listf-Guard-against-unterminated-buff.patch
- Update attr_copy_action in symbols file for newly assigned version node.
- Update minimum version for shlibs file.
- Update debian/rules to handle the modernized upstream build system.
- Update autopkgtests to handle the modernized upstream build system.
- Update debian/copyright file.
- The package should build now on musl. Closes: #782830
* Include new pkg-config file.
* Include /etc/xattr.conf in shared library package, required by
attr_copy_action() function.
* Add Build-Depends-Package field to the symbols file.
* Enable all hardening build flags.
* Remove Multi-Arch fields from udeb packages.
* Mark autopkgtest tests as flaky instead of superficial, they do not cope
well with the Debian buildd environment.
* Add build-essential to autopkgtest Depends fields.
* Remove trailing whitespace and blank lines from debian/copyright.
* Fix several typos in the man pages.
-- Guillem Jover <guillem@debian.org> Thu, 28 Feb 2019 03:55:50 +0100
attr (1:2.4.47-4) unstable; urgency=medium
* Restrict xattr syscall symbols as arch=linux-any. This fixes the builds
on non-Linux systems.
* Reorganize binary package fields.
* Do not install unnecessary or repeated internal documentation.
* Fix upstream test suite:
- Fix perl warning due to deprecated regex construct.
- Remove bogus @ from shell subcommand in Makefile.
* Hook the upstream test suite into both the package build and autopkgtest.
For now ignore failures, and mark it as superficial.
-- Guillem Jover <guillem@debian.org> Sat, 16 Feb 2019 02:42:20 +0100
attr (1:2.4.47-3) unstable; urgency=medium
* Salvage package, with ok from co-maintainer.
Thanks for all their past work on this package. Closes: #921975
* Remove debian/Makefile and debian/configure.ac leftovers.
- Add patch to avoid upstream Makefile entering the debian/ directory.
* Update upstream URL (working and https) in debian/watch file.
* Update debian/watch to format version 4.
* Line-wrap and add a trailing comma to dependency field values.
* Update Homepage field URL to use https.
* Update debian/copyright:
- Remove original packaging information, present in the changelog.
- Switch to machine parseable format 1.0.
- Update copyright statements.
* Remove ancient Conflicts against xfsdump and attr.
* Remove obsolete Priority extra.
* Remove Priority required from shared library package.
* Cleanup debian/rules:
- Use $(CURDIR) instead of `pwd`.
- Remove phase prints and comment out DH_VERBOSE, make it verbose enough.
- Use dpkg architecture.mk fragment instead of ad-hoc variable assignment.
- Use dh_testdir instead of open-coding it.
- Use dh_testroot instead of open-coding it.
- Use dh_clean instead of ad-hoc cleaning, and remove upstream
configure.lineno in debian/clean. Closes: #867266
- Do not create an upstream source tarball distribution.
- Remove unused stdenv variable.
- Use dh_install, dh_installdocs, dh_installman and dh_link instead of
calling the upstream build system multiple times to install into the
package dirs.
- Rename LOCAL_CONFIGURE_OPTIONS to confflags.
- Set configure flags properly for cross-building.
* Switch to debhelper compatibility level 11.
* Set Rules-Requires-Root to no, and stop setting INSTALL_USER and
INSTALL_GROUP, as the build system will default to the current user.
* Switch to Standards-Version 4.3.0.
* Stop installing man pages from section 2 and 5, those are maintained by
the manpages upstream project. Closes: #841719
* Add a shared library symbols file. Closes: #677566
Thanks to Ivo De Decker <ivo.dedecker@ugent.be>.
* Improve a bit the package descriptions.
* Remove ancient versioned dpkg-dev Build-Depends.
* Perform a proper and correct /usr-merge transition by moving the package
contents from / to /usr.
-- Guillem Jover <guillem@debian.org> Tue, 12 Feb 2019 03:42:45 +0100
attr (1:2.4.47-2) unstable; urgency=medium
* Standards-Version: 3.9.5.
* Remove Luk Claes as uploader.
Closes: #748493.
* Add attr-udeb and libattr1-udeb binary packages, for use by
live-installer to copy extended attributes.
Patch by Colin Watson.
Closes: #744037.
* Omit Vcs-* fields.
Closes: #744028.
* Use default compression for binary packages.
* Refresh patches.
-- Anibal Monsalve Salazar <anibal@debian.org> Mon, 08 Sep 2014 08:27:07 +0100
attr (1:2.4.47-1) unstable; urgency=low
* New upstream release 2.4.47
Fix "getfattr should indicate missing xattrs via exit value"
Closes: #520659
* Update debian/rules
Upstream renamed build/ to package/
* Upstream renamed configure.in to configure.ac and didn't ship it.
Add 01-configure.in.patch
* Fix missing ldflags
Add 02-687531-fix-missing-ldflags.patch
Patch by Simon Ruderich
Closes: #687531
-- Anibal Monsalve Salazar <anibal@debian.org> Mon, 20 May 2013 19:07:56 +1000
attr (1:2.4.46-8) unstable; urgency=low
* Enable hardening build flags
Closes: #674003
* DH compatibility level is 9
-- Anibal Monsalve Salazar <anibal@debian.org> Wed, 13 Jun 2012 17:52:45 +1000
attr (1:2.4.46-7) unstable; urgency=low
* Build-depend on gettext. If it build-depends on gettext:any,
the auto-builders stop with the message below.
Dependency installability problem for attr on armel, armhf, hurd-i386,
kfreebsd-amd64, kfreebsd-i386, mips, powerpc, s390, s390x and sparc:
attr (= 1:2.4.46-6) build-depends on missing:
- not-existing-build-dependency-for-any
-- Anibal Monsalve Salazar <anibal@debian.org> Thu, 10 May 2012 17:35:17 +1000
attr (1:2.4.46-6) unstable; urgency=low
* Merge 1:2.4.46-5ubuntu1
- Build-depend on gettext:any, since we only need it to run tools at
build-time.
* Use /bin/sh as CONFIG_SHELL in debian/rules
Closes: #671903
* Fix out-of-date-standards-version
-- Anibal Monsalve Salazar <anibal@debian.org> Thu, 10 May 2012 13:21:50 +1000
attr (1:2.4.46-5ubuntu1) precise; urgency=low
* Merge from Debian testing, remaining changes:
- Build-depend on gettext:any, since we only need it to run tools at
build-time.
-- Steve Langasek <steve.langasek@ubuntu.com> Sat, 17 Dec 2011 19:49:26 -0800
attr (1:2.4.46-5) unstable; urgency=low
* Add Debian epoch version to shlibs dependency.
-- Anibal Monsalve Salazar <anibal@debian.org> Sat, 03 Dec 2011 22:04:54 +1100
attr (1:2.4.46-4) unstable; urgency=low
* Mark libattr1-dev Multi-Arch: same
Patch by Steve Langasek
Closes: 647855
* Build if autconf2.13 is installed
Add 12-643587-attr-autoconf-version-check.patch
Patch by Wookey
Closes: 643587
-- Anibal Monsalve Salazar <anibal@debian.org> Sat, 03 Dec 2011 21:25:23 +1100
attr (1:2.4.46-3ubuntu1) precise; urgency=low
* Build-depend on gettext:any, since we only need it to run tools at
build-time.
-- Steve Langasek <steve.langasek@ubuntu.com> Sat, 05 Nov 2011 17:34:57 +0000
attr (1:2.4.46-3) unstable; urgency=medium
* libattr1: Don't pass "-Zbzip2 -z9" to dpkg-deb
Closes: 634090
* Don't ship .la files
-- Anibal Monsalve Salazar <anibal@debian.org> Sun, 17 Jul 2011 12:19:48 +1000
attr (1:2.4.46-2) unstable; urgency=low
* Append 'libattr 1 libattr1 (>= 2.4.46-2)' to
debian/libattr1/DEBIAN/shlibs
* Remove debian/{attr,libattr1,libattr1-dev}.debhelper.log
* Set standards-version to 3.9.2
* Pass "-Zbzip2 -z9" to dpkg-deb
* Fix debian-rules-missing-recommended-target
-- Anibal Monsalve Salazar <anibal@debian.org> Mon, 04 Jul 2011 21:29:12 +1000
attr (1:2.4.46-1) unstable; urgency=low
* New upstream release (Closes: #626622).
- All patches are incorporated upstream.
* Add multiarch support (Closes: #528141).
-- Luk Claes <luk@debian.org> Fri, 24 Jun 2011 07:37:19 +0200
attr (1:2.4.44-3) unstable; urgency=medium
* Add myself as comaintainer
* Use bash in build process (Closes: #621927)
* Pass host & build to allow cross builds to succeed (Closes: #284044)
-- Luk Claes <luk@debian.org> Sat, 28 May 2011 15:48:08 +0200
attr (1:2.4.44-2) unstable; urgency=low
* Source format is 3.0 (quilt)
* Add upstream patches
02-fix_memory_leak_in_attr_copy_action.patch
03-pull_in_string.h.patch
05-eliminate_a_memory_leak.patch
06-eliminate_a_double_free.patch
07-fix_thinko_in_restore.patch
* Fix debhelper-but-no-misc-depends
* Fix out-of-date-standards-version
-- Anibal Monsalve Salazar <anibal@debian.org> Tue, 08 Jun 2010 13:58:30 +1000
attr (1:2.4.44-1) unstable; urgency=low
* New upstream release
* Fix out-of-date-standards-version
* Fix copyright-refers-to-versionless-license-file
* Update homepage in debian/control
* Add Vcs-Git and Vcs-Browser to debian/control
* Update download page in debian/copyright
* Update debian/watch
* Add automake as a build-dependency
-- Anibal Monsalve Salazar <anibal@debian.org> Tue, 25 Aug 2009 11:23:53 +1000
attr (1:2.4.43-3) unstable; urgency=low
[ Cyril Brulebois ]
* Backport the following fix by Petr Salinger from upstream to fix
FTBFS on GNU/kFreeBSD (Closes: #531950): [git commit b4636a4e9e]
On Linux, ENOATTR aliases to ENODATA. On other operating systems
like Irix and BSD*, ENOATTR is a separate error number. Therefore,
protect the check on “err == ENODATA” with “#ifdef __linux__” in
strerror_ea() in both getfattr/getfattr.c and setfattr/setfattr.c
[ Anibal Monsalve Salazar ]
* Standards version is 3.8.2
* DH compatibility level is 7
* Fix "incorrect-libdir-in-la-file usr/lib/libattr.la /lib != /usr/lib"
-- Anibal Monsalve Salazar <anibal@debian.org> Sat, 27 Jun 2009 00:29:24 +1000
attr (1:2.4.43-2) unstable; urgency=high
* Remove --enable-lib64=yes in Makefile (closes: #514017)
-- Anibal Monsalve Salazar <anibal@debian.org> Tue, 10 Feb 2009 20:32:30 +1100
attr (1:2.4.43-1) unstable; urgency=low
* New upstream release
* Updated debian/watch
* Standards version is 3.8.0
-- Anibal Monsalve Salazar <anibal@debian.org> Thu, 03 Jul 2008 13:49:43 +1000
attr (1:2.4.41-1) unstable; urgency=low
* New upstream release
* Add myself to Uploaders
* Remove /usr/share/doc/attr (closes: #405106, #445903)
* Bump dependency of attr to libattr1 (>= 2.4.41), might be too high but
good enough. (closes: #377700)
* Upstream closed bugs:
Manpage updated (closes: #446877)
* Closing old bugs:
2.4.36: (closes: #299095)
* Bump Standards Versions, no changes were needed.
* Bump DH_COMPAT.
-- Niv Sardi <xaiki@debian.org> Mon, 11 Feb 2008 17:45:43 +1100
attr (1:2.4.39-1) unstable; urgency=low
* New upstream release
* debian/control:
- Added homepage
- Added myself as comaintainer
- Set Standards-Version to 3.7.2
- libattr1-dev depends on libattr1 (= ${binary:Version})
- attr and libattr1 depend on ${misc:Depends}
* debian/watch: Added
* include/buildrules: Drop --omit-header from xgettext call, so that the
generated POT file becomes valid.
* debian/rules: Rebuild POT file so that Ubuntu's Rosetta can always
import an up to date version.
-- Anibal Monsalve Salazar <anibal@debian.org> Sun, 16 Sep 2007 09:14:11 +1000
attr (2.4.36-1) unstable; urgency=high
* New upstream release
* Reinstate xattr syscall entry points (closes: #403585)
* Fix ARM EABI issue differently, thanks to Lennert Buytenhek.
-- Nathan Scott <nathans@debian.org> Tue, 19 Dec 2006 09:46:05 +1100
attr (2.4.35-1) unstable; urgency=low
* New upstream release
-- Nathan Scott <nathans@debian.org> Fri, 08 Dec 2006 14:12:25 +1100
attr (2.4.33-1) unstable; urgency=low
* New upstream release
-- Nathan Scott <nathans@debian.org> Mon, 03 Jul 2006 10:08:43 +1000
attr (1:2.4.32-1.2) unstable; urgency=low
* Non-maintainer upload (porter NMU).
* add armel support, Closes: #421627
* fix kfreebsd build, Closes: #414232
-- Riku Voipio <riku.voipio@iki.fi> Wed, 25 Jul 2007 23:33:58 +0300
attr (1:2.4.32-1.1) unstable; urgency=emergency
* Non-maintainer upload.
* Reupload previous version and fix breackage of ls -la, cp -a and other
essential utilities.
Closes: #403601, #403592, #403585, #403590, #403599 and probably more.
-- Andreas Barth <aba@not.so.argh.org> Mon, 18 Dec 2006 13:42:31 +0000
attr (2.4.32-1) unstable; urgency=low
* New upstream release
* Fixed build dependency on libc-dev (closes: #358786)
-- Nathan Scott <nathans@debian.org> Tue, 28 Mar 2006 09:14:25 +1100
attr (2.4.31-1) unstable; urgency=low
* New upstream release
* Updated Polish translation.
* Initial Swedish translation (closes: #349234)
* Switched from debmake to debhelper.
* Build updates for GNU/Hurd (closes: #299095)
-- Nathan Scott <nathans@debian.org> Wed, 22 Feb 2006 13:14:24 +1100
attr (2.4.25-1) unstable; urgency=low
* New upstream release
* Added French translation (closes: #333177)
-- Nathan Scott <nathans@debian.org> Tue, 11 Oct 2005 06:47:13 +1000
attr (2.4.21-1) unstable; urgency=low
* New upstream release
* Replace use of _POSIX_PATH_MAX with PATH_MAX (see bug 292819)
-- Nathan Scott <nathans@debian.org> Mon, 31 Jan 2005 20:13:02 +1100
attr (2.4.20-1) unstable; urgency=low
* New upstream release
-- Nathan Scott <nathans@debian.org> Tue, 30 Nov 2004 15:28:15 +1100
attr (2.4.18-1) unstable; urgency=low
* New upstream release
* Added Dutch language translation from Luk Claes (closes: #272482)
-- Nathan Scott <nathans@debian.org> Tue, 21 Sep 2004 10:38:28 +1000
attr (2.4.16-1) unstable; urgency=low
* New upstream release
-- Nathan Scott <nathans@debian.org> Wed, 21 Apr 2004 08:54:29 +1000
attr (2.4.15-1) unstable; urgency=low
* New upstream release
-- Nathan Scott <nathans@debian.org> Mon, 02 Feb 2004 12:36:53 +1100
attr (2.4.12-1) unstable; urgency=low
* New upstream release
* Fix GNU/Hurd build issues, thanks to Robert Millan (closes: #215154)
-- Nathan Scott <nathans@debian.org> Mon, 13 Oct 2003 13:02:58 +1000
attr (2.4.8-1) unstable; urgency=low
* New upstream release
-- Nathan Scott <nathans@debian.org> Mon, 04 Aug 2003 09:18:00 +1000
attr (2.4.7-1) unstable; urgency=low
* New upstream release
-- Nathan Scott <nathans@debian.org> Tue, 29 Jul 2003 11:09:50 +1000
attr (2.4.5-1) unstable; urgency=low
* New upstream release
* Removed the need to always run msgmerge during the build
-- Nathan Scott <nathans@debian.org> Thu, 03 Jul 2003 12:47:44 +1000
attr (2.4.4-1) unstable; urgency=low
* New upstream release
* Fix lib package dependencies, thanks to Steve Langasek (closes: #196046)
-- Nathan Scott <nathans@debian.org> Wed, 04 Jun 2003 15:50:50 +1000
attr (2.4.3-1) unstable; urgency=low
* New upstream release
* Note: COMPAT_XFSROOT environment variable is no longer needed
-- Nathan Scott <nathans@debian.org> Sat, 26 Apr 2003 04:36:01 +1000
attr (2.4.0-1) unstable; urgency=low
* New upstream release
* Updated policy version to which this package conforms
* Note: xfsdump and xfsrestore are affected by a change in libattr
which deprecates the attribute name prefix "xfsroot", replacing
it with the generic "trusted" name -- the environment variable
COMPAT_XFSROOT can be used to obtain the old behavior
-- Nathan Scott <nathans@debian.org> Wed, 26 Feb 2003 16:07:57 +1100
attr (2.2.0-1) unstable; urgency=low
* New upstream release
-- Nathan Scott <nathans@debian.org> Sat, 30 Nov 2002 12:23:15 +1100
attr (2.1.1-1) unstable; urgency=low
* Fix the group for libattr1, was "utils" now "libs" (closes: #166836)
-- Nathan Scott <nathans@debian.org> Tue, 29 Oct 2002 09:29:52 +1100
attr (2.1.0-1) unstable; urgency=low
* New upstream release, changing dev package name (closes: #141755)
-- Nathan Scott <nathans@debian.org> Sat, 19 Oct 2002 08:40:38 +1000
attr (2.0.12-1) unstable; urgency=low
* New upstream release
-- Nathan Scott <nathans@debian.org> Mon, 7 Oct 2002 05:41:55 +1000
attr (2.0.11-1) unstable; urgency=low
* New upstream release
-- Nathan Scott <nathans@debian.org> Thu, 5 Sep 2002 09:12:02 +1000
attr (2.0.9-1) unstable; urgency=low
* New upstream release (mainly build-related changes)
* Added system call numbers for the Alpha architecture
-- Nathan Scott <nathans@debian.org> Thu, 4 Jul 2002 12:10:38 +1000
attr (2.0.8-1) unstable; urgency=low
* New upstream bugfix release
-- Nathan Scott <nathans@debian.org> Mon, 22 Apr 2002 15:04:53 +1000
attr (2.0.7-1) unstable; urgency=low
* New upstream bugfix release
-- Nathan Scott <nathans@debian.org> Sat, 13 Apr 2002 09:45:06 +1000
attr (2.0.6-1) unstable; urgency=low
* New upstream bugfix release
-- Nathan Scott <nathans@debian.org> Tue, 26 Mar 2002 15:13:49 +1100
attr (2.0.5-1) unstable; urgency=low
* New upstream bugfix release
-- Nathan Scott <nathans@debian.org> Tue, 12 Mar 2002 09:31:30 +1100
attr (2.0.3-1) unstable; urgency=low
* Major new upstream release
* Uses the new official ext2/ext3/XFS extended attributes interfaces
* Several system call changes - THIS WILL NOT WORK WITH OLD KERNELS!
(because old kernels use unreserved, unofficial system calls)
* Introduction of a new package (libattr) requested by ACL upstream
for new POSIX ACL packages; this is in addition to the existing
attr and attr-dev packages this source generates
-- Nathan Scott <nathans@debian.org> Tue, 26 Feb 2002 13:25:26 +1100
attr (1.1.3-0) unstable; urgency=low
* New release to fix system call issue on PowerPC
-- Nathan Scott <nathans@debian.org> Fri, 3 Aug 2001 11:06:55 +1000
attr (1.1.2-0) unstable; urgency=low
* New upstream release
-- Nathan Scott <nathans@debian.org> Fri, 27 Jul 2001 07:59:49 +1000
attr (1.1.1-0) unstable; urgency=low
* New upstream release
-- Nathan Scott <nathans@debian.org> Mon, 23 Jul 2001 10:27:37 +1000
attr (1.1.0-0) unstable; urgency=low
* Reworked package slightly so that its not Debian native
* Debian-specific changes now documented in changelog.Debian.gz
* New upstream release (see /usr/share/doc/attr/changelog.gz)
* Checked standards compliance - update standards version to 3.5.5
-- Nathan Scott <nathans@debian.org> Mon, 16 Jul 2001 18:14:56 +1000
attr (1.0.4) unstable; urgency=low
* Work around syscall number collision on recent ia64 kernels
-- Nathan Scott <nathans@debian.org> Mon, 2 Jul 2001 13:02:02 +1000
attr (1.0.3) unstable; urgency=low
* Updates to man pages.
-- Nathan Scott <nathans@debian.org> Fri, 18 May 2001 15:47:54 +1000
attr (1.0.2) unstable; urgency=low
* Initial release.
-- Nathan Scott <nathans@debian.org> Wed, 25 Apr 2001 12:19:15 +1000
|