[med-svn] r8189 - in trunk/packages/R/r-cran-bitops/trunk/debian: . source
Andreas Tille
tille at alioth.debian.org
Tue Oct 18 18:40:24 UTC 2011
Author: tille
Date: 2011-10-18 18:40:24 +0000 (Tue, 18 Oct 2011)
New Revision: 8189
Added:
trunk/packages/R/r-cran-bitops/trunk/debian/source/
trunk/packages/R/r-cran-bitops/trunk/debian/source/format
Modified:
trunk/packages/R/r-cran-bitops/trunk/debian/README.Debian
trunk/packages/R/r-cran-bitops/trunk/debian/changelog
trunk/packages/R/r-cran-bitops/trunk/debian/compat
trunk/packages/R/r-cran-bitops/trunk/debian/control
trunk/packages/R/r-cran-bitops/trunk/debian/rules
Log:
Several packaging updates; rebuild against recent R version
Modified: trunk/packages/R/r-cran-bitops/trunk/debian/README.Debian
===================================================================
--- trunk/packages/R/r-cran-bitops/trunk/debian/README.Debian 2011-10-18 17:57:37 UTC (rev 8188)
+++ trunk/packages/R/r-cran-bitops/trunk/debian/README.Debian 2011-10-18 18:40:24 UTC (rev 8189)
@@ -1,8 +1,7 @@
-bitops CRAN package for Debian
-------------------------------
+Notes on how this package can be tested.
+────────────────────────────────────────
-Notes on testing:
+This package can be tested by loading it into R with the command
+‘library(bitops)’ in order to confirm its integrity.
-Since this package does not have regression checks nor instructions for
-performing some manually, it was not thoroughly tested before its upload to the
-Debian archive.
+ -- Andreas Tille <tille at debian.org> Tue, 18 Oct 2011 19:46:07 +0200
Modified: trunk/packages/R/r-cran-bitops/trunk/debian/changelog
===================================================================
--- trunk/packages/R/r-cran-bitops/trunk/debian/changelog 2011-10-18 17:57:37 UTC (rev 8188)
+++ trunk/packages/R/r-cran-bitops/trunk/debian/changelog 2011-10-18 18:40:24 UTC (rev 8189)
@@ -1,9 +1,18 @@
-bitops (1.0-4.1-2) UNRELEASED; urgency=low
+bitops (1.0-4.1-2) unstable; urgency=low
+ [ Charles Plessy ]
* Added debian/upstream-metadata.yaml for real (forgotten in 1.0-4.1-1).
- -- Charles Plessy <plessy at debian.org> Thu, 29 Oct 2009 18:58:40 +0900
+ [ Andreas Tille ]
+ * Standards-Version: 3.9.2 (No changes needed)
+ * debian/{control,rules}: Depends: ${R:Depends}
+ Closes: #645789
+ * Source format 3.0 (quilt)
+ * Debhelper 8 (control+compat)
+ * Fixed Vcs fields
+ -- Andreas Tille <tille at debian.org> Tue, 18 Oct 2011 19:46:07 +0200
+
bitops (1.0-4.1-1) unstable; urgency=low
* New upstream release.
Modified: trunk/packages/R/r-cran-bitops/trunk/debian/compat
===================================================================
--- trunk/packages/R/r-cran-bitops/trunk/debian/compat 2011-10-18 17:57:37 UTC (rev 8188)
+++ trunk/packages/R/r-cran-bitops/trunk/debian/compat 2011-10-18 18:40:24 UTC (rev 8189)
@@ -1 +1 @@
-7
+8
Modified: trunk/packages/R/r-cran-bitops/trunk/debian/control
===================================================================
--- trunk/packages/R/r-cran-bitops/trunk/debian/control 2011-10-18 17:57:37 UTC (rev 8188)
+++ trunk/packages/R/r-cran-bitops/trunk/debian/control 2011-10-18 18:40:24 UTC (rev 8189)
@@ -2,18 +2,19 @@
Section: gnu-r
Priority: optional
Maintainer: Debian Med Packaging Team <debian-med-packaging at lists.alioth.debian.org>
-Uploaders: Steffen Moeller <moeller at debian.org>, Charles Plessy <plessy at debian.org>
+Uploaders: Steffen Moeller <moeller at debian.org>, Charles Plessy <plessy at debian.org>,
+ Andreas Tille <tille at debian.org>
DM-Upload-Allow: yes
-Build-Depends: debhelper (>= 7), r-base-dev, cdbs
-Standards-Version: 3.8.3
-Vcs-Browser: http://svn.debian.org/wsvn/debian-med/trunk/packages/R/bitops/trunk/?rev=0&sc=0
-Vcs-Svn: svn://svn.debian.org/svn/debian-med/trunk/packages/R/bitops/trunk/
+Build-Depends: debhelper (>= 8), r-base-dev, cdbs
+Standards-Version: 3.9.2
+Vcs-Browser: http://svn.debian.org/wsvn/debian-med/trunk/packages/R/r-cran-bitops/trunk/
+Vcs-Svn: svn://svn.debian.org/debian-med/trunk/packages/R/r-cran-bitops/trunk/
Homepage: http://cran.r-project.org/web/packages/bitops/
Package: r-cran-bitops
Architecture: any
-Depends: r-base-core, ${shlibs:Depends}, ${misc:Depends}
+Depends: ${shlibs:Depends}, ${misc:Depends}, ${R:Depends}
Description: GNU R package implementing bitwise operations
Functions for bitwise operations on integer vectors.
.
Modified: trunk/packages/R/r-cran-bitops/trunk/debian/rules
===================================================================
--- trunk/packages/R/r-cran-bitops/trunk/debian/rules 2011-10-18 17:57:37 UTC (rev 8188)
+++ trunk/packages/R/r-cran-bitops/trunk/debian/rules 2011-10-18 18:40:24 UTC (rev 8189)
@@ -1,7 +1,10 @@
#!/usr/bin/make -f
# -*- makefile -*-
-# debian/rules file for the Debian/GNU Linux r-cran-gplots package
-# Copyright 2003-2006 by Dirk Eddelbuettel <edd at debian.org>
+# debian/rules file for the Debian/GNU Linux r-cran-bitops package
+# Copyright 2011 by Andreas Tille <tille at debian.org>, GPL
include /usr/share/R/debian/r-cran.mk
+install/$(package)::
+ # Require a number equal or superior than the R version the package was built with.
+ echo "R:Depends=r-base-core (>= $(shell R --version | head -n1 | perl -ne 'print / +([0-9]\.[0-9]+\.[0-9])/')~)" >> debian/$(package).substvars
Added: trunk/packages/R/r-cran-bitops/trunk/debian/source/format
===================================================================
--- trunk/packages/R/r-cran-bitops/trunk/debian/source/format (rev 0)
+++ trunk/packages/R/r-cran-bitops/trunk/debian/source/format 2011-10-18 18:40:24 UTC (rev 8189)
@@ -0,0 +1 @@
+3.0 (quilt)
More information about the debian-med-commit
mailing list