search for: package_version

Displaying 20 results from an estimated 525 matches for "package_version".

2013 Oct 01
2
Unknown versions in git.
bat guano wrote: > (look for the CURRENT_VERSION definition). > > CURRENT_VERSION > > Search string not found configure.ac:3 dnl The package_version file will be automatically synced to the git revision dnl by the update_version script when configured in the repository, but will dnl remain constant in tarball releases unless it is manually edited. m4_define([CURRENT_VERSION], m4_esyscmd([ ./update_version 2>/dev/null || true...
2008 Feb 13
0
RFC for package PopCon: a popularity contest for R and packages
...e.list" [37] "as.vector.simple.list" "as.vector.default" [39] "unique.character" "$.packageDescription2" [41] "$.default" ">=.R_system_version" [43] "Ops.R_system_version" ">=.package_version" [45] "Ops.package_version" ">=.numeric_version" [47] ">=.package_version" "Ops.package_version" [49] ">=.numeric_version" "unlist.R_system_version" [51] "unlist.package_version" "unl...
2008 Feb 14
0
RFC for package PopCon: a popularity contest for R and packages
...e.list" [37] "as.vector.simple.list" "as.vector.default" [39] "unique.character" "$.packageDescription2" [41] "$.default" ">=.R_system_version" [43] "Ops.R_system_version" ">=.package_version" [45] "Ops.package_version" ">=.numeric_version" [47] ">=.package_version" "Ops.package_version" [49] ">=.numeric_version" "unlist.R_system_version" [51] "unlist.package_version" "unl...
2013 Oct 03
1
version comparison puzzle
Can anyone explain what I'm missing here? max(pp1 <- package_version(c("0.99999911.3","1.0.4","1.0.5"))) ## [1] ?1.0.4? max(pp2 <- package_version(c("1.0.3","1.0.4","1.0.5"))) ## [1] ?1.0.5? I've looked at ?package_version , to no avail. Since max() goes to .Primitive("max") I'm havi...
2019 Jul 14
8
Prelease now available
Hi all, I have a new pre-reelase (with a GPG signature) up here: http://mega-nerd.com/tmp/flac-1.3.3rc1.tar.xz http://mega-nerd.com/tmp/flac-1.3.3rc1.tar.xz.asc This code is built from commit 10a28d482a8e48b806f61ab766992b2add98ec43 plus another commmit to change the version numbers which I will not be pushing to the public repo before the final release. Note that audio files encoded
2024 Oct 17
2
Consider getNamespaceVersion() returning a numeric_version
I mean the `numeric_version` object not a numeric (double/int). Basically to protect me from myself I'd prefer not to have to remember to wrap `getNamespaceVersion()` with `as.package_version()`. I suspect a grep of CRAN may highlight others who are erroneously comparing character objects rather than a comparison between a `numeric_version` object and a character. Tim On 17/10/2024 13:22, Dirk Eddelbuettel wrote: > On 17 October 2024 at 12:38, Tim Taylor wrote: > | Would R-C...
2019 Aug 30
1
[nbdkit PATCH v2] filters: Stronger version match requirements
...name, filter->_api_version); + "(_api_version = %d, need %d)\n", + program_name, filename, filter->_api_version, + NBDKIT_FILTER_API_VERSION); + exit (EXIT_FAILURE); + } + if (filter->_version == NULL || + strcmp (filter->_version, PACKAGE_VERSION) != 0) { + fprintf (stderr, + "%s: %s: filter is incompatible with this version of nbdkit " + "(_version = %s, need %s)\n", + program_name, filename, filter->_version ?: "<null>", + PACKAGE_VERSION); exit...
2015 Feb 27
2
[LLVMdev] [PATCH] CMake: Use LLVM_VERSION_SUFFIX instead of hardcoded "svn" string
...mail.com> --- CMakeLists.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index ed7aeb026f5d..60fe427e456e 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -66,7 +66,7 @@ set(LLVM_VERSION_PATCH 0) set(LLVM_VERSION_SUFFIX svn) if (NOT PACKAGE_VERSION) - set(PACKAGE_VERSION "${LLVM_VERSION_MAJOR}.${LLVM_VERSION_MINOR}.${LLVM_VERSION_PATCH}svn") + set(PACKAGE_VERSION "${LLVM_VERSION_MAJOR}.${LLVM_VERSION_MINOR}.${LLVM_VERSION_PATCH}${LLVM_VERSION_SUFFIX}") endif() option(LLVM_INSTALL_TOOLCHAIN_ONLY "Only include too...
2024 Oct 17
1
Consider getNamespaceVersion() returning a numeric_version
On 17/10/2024 13:42, Tim Taylor wrote: > I mean the `numeric_version` object not a numeric (double/int). > Basically to protect me from myself I'd prefer not to have to remember > to wrap `getNamespaceVersion()` with `as.package_version()`. > > I suspect a grep of CRAN may highlight others who are erroneously > comparing character objects rather than a comparison between a > `numeric_version` object and a character. Perhaps you could do that rather than speculating? Similarly, try out over CRAN the effect of getN...
2019 Jul 14
1
Prelease now available
Janne Hyvärinen wrote: > Minor changes needed for Visual Studio as the version is defined in the > project files. > > Replace 'PACKAGE_VERSION=\&quot;1.3.2\&quot' with > 'PACKAGE_VERSION=\&quot;1.3.3rc1\&quot' in > src/libFLAC/libFLAC_dynamic.vcproj and libFLAC_static.vcproj. And > replace 'PACKAGE_VERSION="1.3.2"' with 'PACKAGE_VERSION="1.3.3rc1"' in > src/li...
2016 Jul 15
3
[PATCH 1/4] Create a simple project to create version.h to run before any other
...oj +++ b/win32/VS2015/celt.vcxproj @@ -249,8 +249,10 @@ <GenerateDebugInformation>true</GenerateDebugInformation> </Link> <PreBuildEvent> - <Command>"$(ProjectDir)..\..\win32\genversion.bat" "$(ProjectDir)..\..\win32\version.h" PACKAGE_VERSION</Command> - <Message>Generating version.h</Message> + <Command> + </Command> + <Message> + </Message> </PreBuildEvent> <CustomBuildStep> <Command> @@ -291,8 +293,10 @@ <GenerateDebugInfor...
2024 Oct 17
1
Consider getNamespaceVersion() returning a numeric_version
On 17 October 2024 at 12:38, Tim Taylor wrote: | Would R-Core be receptive to having getNamespaceVersion() return a | numeric_version object instead of a named character? Is this good enough? What's your actual issue a 'numeric' would address? > as.package_version(getNamespaceVersion("base")) < "4.5.0" [1] TRUE > > as.package_version(getNamespaceVersion("Rcpp")) > "1.0.11" [1] TRUE > as.package_version(getNamespaceVersion("Rcpp")) > "1.0.14" [1] FALSE > Di...
2011 Apr 12
0
all.equal(data.frame(package_version()), ...) infinite recursion
With R-2.12.2 on Linux: > z <- data.frame(Version=package_version(c("0.1")), row.names=c("pkgA")) > all.equal(z, z) # expect TRUE Error: evaluation nested too deeply: infinite recursion / options(expressions=)? > traceback() ... lots of lines in a 3-cycle ... 6: all.equal.list(target, current, ...) 5: all.equal.default(target...
2013 Oct 01
0
Unknown versions in git.
---------------------------------------- > dnl The package_version file will be automatically synced to the git > revision > dnl by the update_version script when configured in the repository, Not working for me. :-( This:- $ git clone --depth 1 git://git.xiph.org/opus.git $ cd opus $ ./autogen.sh $ ./configure Then this:- $ cat package_version | grep &qu...
2013 Oct 01
2
Unknown versions in git.
> > Not working for me. > :-( > But that's because I used shallow clones! Works OK without the "--depth 1". $ cat package_version | grep "PACKAGE_VERSION" PACKAGE_VERSION="1.1-beta-24-ga32fa31" $ cat package_version | grep "PACKAGE_VERSION" PACKAGE_VERSION="0.1.7-9-g4d0df2b"
2014 Nov 26
3
Problem understanding behaviour of versionCheck for loadNamespace (and when versions for Imports packages are checked)
...info later). My tests (package2 imports package1) use implicit loading (via the package1::fun1() idiom) so I have worked back to try get a minimal example of what's causing me problems. I have tried loadNamespace('package2', versionCheck = list (op = ">=", version = package_version('3.0'))) This should fail (package2 has version 0.3, not 3.0) but instead it seems to load package2, version 0.3 OK. Reading the code of loadNamespace, there is some code which says if (length(z <- versionCheck) == 3L && !do.call(z$op, list(as.numeric_version(ve...
2015 Feb 27
0
[LLVMdev] [PATCH] CMake: Use LLVM_VERSION_SUFFIX instead of hardcoded "svn" string
...file changed, 1 insertion(+), 1 deletion(-) > > diff --git a/CMakeLists.txt b/CMakeLists.txt > index ed7aeb026f5d..60fe427e456e 100644 > --- a/CMakeLists.txt > +++ b/CMakeLists.txt > @@ -66,7 +66,7 @@ set(LLVM_VERSION_PATCH 0) > set(LLVM_VERSION_SUFFIX svn) > > if (NOT PACKAGE_VERSION) > - set(PACKAGE_VERSION "${LLVM_VERSION_MAJOR}.${LLVM_VERSION_MINOR}.${LLVM_VERSION_PATCH}svn") > + set(PACKAGE_VERSION "${LLVM_VERSION_MAJOR}.${LLVM_VERSION_MINOR}.${LLVM_VERSION_PATCH}${LLVM_VERSION_SUFFIX}") > endif() > > option(LLVM_INSTALL_TOOLCHAIN_ONLY...
2017 Sep 25
1
[PATCH] Fix determining release date for builddir != srcdir
...76f..1ab54500d 100644 --- a/configure.ac +++ b/configure.ac @@ -94,7 +94,7 @@ dnl Find the release date for this version. This is used in dnl the website 'index.html' file. We have to do this after dnl testing for awk in guestfs_progs.m4 above. AC_MSG_CHECKING([for the release date of $PACKAGE_VERSION]) -RELEASE_DATE="$(grep ^$PACKAGE_VERSION@<:@@<:@:space:@:>@@:>@ RELEASES | $AWK '{print $2}')" +RELEASE_DATE="$(grep ^$PACKAGE_VERSION@<:@@<:@:space:@:>@@:>@ ${srcdir}/RELEASES | $AWK '{print $2}')" AS_IF([test "x$RELEASE_DATE"...
2016 Dec 07
2
Do we need a pre-release?
lvqcl.mail wrote: > Microsoft Visual Studio 2015: > format.c(48): error C2065: 'PACKAGE_VERSION': undeclared identifier > > I edited MSVC project files (I changed 'VERSION' preprocessor variable > to 'PACKAGE_VERSION') and it resulted in successful build: > "Rebuild All: 26 succeeded, 0 failed, 0 skipped" Can I ask you to provide a patch updating al...
2013 Sep 04
2
opus code optimization
The opus code default compiles on -o2 optimization level. I would like to change it to -o3. I have tried doing the changes in makefile.unix . The change is not getting reflected. I am building the code in Code composer studio for TI processor C6000. Could anybody help me with this -------------- next part -------------- An HTML attachment was scrubbed... URL: