Displaying 13 results from an estimated 13 matches for "semver".
Did you mean:
gemver
2013 Oct 04
1
Allow semantic versioning for packages
Dear R developers,
(http://bugs.r-project.org/ seems to be down, so I am writing a feature
request here.)
It would be great to allow semantic version numbers for packages. See
http://semver.org/ for details.
The problem I am having is that I am setting up a nightly build server, and
there is no easy way to create a version number for builds that are in
between releases.
Ideally I would use something like
TAG+DIST.HASH
TAG is the last tag of the git branch, usually something like
M...
2023 Mar 06
2
Release plans
The current plan for the next release series includes relicensing
the C++ libxapian library in xapian-core as MPL. The remaining
blockers for this are:
* adding update support to the new honey backend (to replace glass)
* adding support for RAM storage to honey (to replace inmemory)
* moving some remote client and server code out of libxapian (or
replacing it)
I'm certainly still aiming
2019 Aug 11
0
[PATCH 2/2] Rust bindings: Make it able to publish this crate
...o/crates/guestfs)
+
+# For maintainer
+
+## How to test
+
+Tests are incorporated into the build system.
+
+You can test it manually by
+
+```
+$ ../run cargo test
+```
+
+## How to publish
+
+### 1. Fix version in Cargo.toml.in
+
+Regarding Versioning convention, see [Semantic
+Versioning](https://semver.org/).
+
+You must not break '-compat@VERSION@' to make sure that this binding is
+compatible with the installed libguestfs.
+
+Example
+```
+version = "0.1.0-compat@VERSION@"
+```
+
+### 2. Commit the change of the version
+
+### 3. Build libguestfs
+
+### 4. Publish
+
+```
+$ ca...
2018 Jun 01
2
Cannot Load A Package
Hi All,
I am trying to download semnet package but getting the error:
package not available for R version 3.4.4.
I tried downloading it from
install.packages('semnet',repos='http://cran.us.r-project.org')
and install.packages('semnet',repos='http://cran.revolutionanalytics.com/')
and even the https://cran.r-project.org/src/contrib/semnet.tar.gz but
doesnt seem to
2012 Jun 20
0
Announce: Puppet 2.7.17 Available
...e in the --version argument would confuse upstart, and the
version returned would not always be a semantic version, which caused the
upstart provider to fail. This commit updates the initctl call to remove the
leading space from the --version argument, and also replaces the implicit
SemVer comparisons with wrapper functions that call out to
Puppet::Util::Package.versioncmp to do version comparisons. It also fixes a
subtly broken regex to grab the full version string.
Add exclude list to upstart provider
The wait-for-state service seems to be a helper that is used by ups...
2013 Nov 23
2
OSX 10.9 appdmg/pkgdmg
..._ruby/1.8/puppet
/System/Library/Frameworks/Ruby.framework/Versions/2.0/usr/lib/ruby/site_ruby/2.0.0/puppet
sudo ln -s /usr/lib/ruby/site_ruby/1.8/puppet.rb
/System/Library/Frameworks/Ruby.framework/Versions/2.0/usr/lib/ruby/site_ruby/2.0.0/puppet.rb
sudo ln -s /usr/lib/ruby/site_ruby/1.8/semver.rb
/System/Library/Frameworks/Ruby.framework/Versions/2.0/usr/lib/ruby/site_ruby/2.0.0/semver.rb
sudo ln -s /usr/lib/ruby/site_ruby/1.8/facter
/System/Library/Frameworks/Ruby.framework/Versions/2.0/usr/lib/ruby/site_ruby/2.0.0/facter
sudo ln -s /usr/lib/ruby/site_ruby/1.8/facter.rb
/Syst...
2022 Mar 11
2
On retiring some terminology
FYI: PR https://github.com/networkupstools/nut/pull/1328 adds handling of
`PRIMARY` alias to `MASTER` on protocol side, hopefully completing the
puzzle for issue #840.
Reviews and testing would be welcome :)
On Sun, Mar 14, 2021, 00:34 Jim Klimov <jimklimov+nut at gmail.com> wrote:
> Thanks again for all the suggestions.
>
> For now I've prepared draft PRs, mostly to map out
2022 Mar 11
2
On retiring some terminology
FYI: PR https://github.com/networkupstools/nut/pull/1328 adds handling of
`PRIMARY` alias to `MASTER` on protocol side, hopefully completing the
puzzle for issue #840.
Reviews and testing would be welcome :)
On Sun, Mar 14, 2021, 00:34 Jim Klimov <jimklimov+nut at gmail.com> wrote:
> Thanks again for all the suggestions.
>
> For now I've prepared draft PRs, mostly to map out
2014 Aug 24
1
Issue with apcupsd-ups?
Hello;I just came across NUT, testing FreeNAS/FreeBSD. I?m running at home a APC UPS connected to another computer, running apcupsd.
I found out that NUT didn't talk by default to apcupsd, and there was a driver created relatively recently (apcupsd-ups), which filled in that gap.
The version I found on my FreeBSD/FreeNAS system seems to imply that there is more to come to that driver (0.04)
2013 Oct 21
4
Puppet 3.2: add element to array
Hi!
Is it possible to add a new element to an array inside puppet manifest ? Something like ruby''s array.push(''new_element'') ?
--
Best regards,
Sergey Arlashin
--
You received this message because you are subscribed to the Google Groups "Puppet Users" group.
To unsubscribe from this group and stop receiving emails from it, send an email to
2016 Aug 31
1
NODEJS010-NPM is not getting installed due to dependency errors on Custom Centos ISO installation
...ead-package-json-2.0.2-1.el7.centos.noarch.rpm
nodejs010-nodejs-realize-package-specifier-3.0.1-1.el7.centos.noarch.rpm
nodejs010-nodejs-request-2.42.0-6.el7.centos.noarch.rpm
nodejs010-nodejs-retry-0.6.0-6.el7.centos.noarch.rpm
nodejs010-nodejs-rimraf-2.4.3-1.el7.centos.noarch.rpm
nodejs010-nodejs-semver-5.0.3-1.el7.centos.noarch.rpm
nodejs010-nodejs-sha-2.0.1-2.1.el7.centos.noarch.rpm
nodejs010-nodejs-slide-1.1.6-1.el7.centos.noarch.rpm
nodejs010-nodejs-sorted-object-1.0.0-3.el7.centos.noarch.rpm
nodejs010-nodejs-spdx-correct-1.0.2-1.el7.centos.noarch.rpm
nodejs010-nodejs-spdx-exceptions-1.0.4-1.e...
2019 Aug 11
5
[PATCH 1/2] Rust bindings: Add long description
`cargo doc` will generate docs with long descriptions.
I did not add the settings of outputting these docs to `/website`.
This is because
- by publishing this crate to crates.io, users can see the docs in
`docs.rs` like `https://docs.rs/guestfs/<version>/guestfs/`. It is easy
to hold multiple documents corresponding to each version.
- the style of the documents generated by `cargo doc`
2018 Dec 13
5
New LLVM git repository conversion prototype
On Thu, Dec 13, 2018 at 7:18 AM Alex Bradbury via llvm-dev <
llvm-dev at lists.llvm.org> wrote:
> On Thu, 13 Dec 2018 at 15:07, Hans Wennborg via llvm-dev
> <llvm-dev at lists.llvm.org> wrote:
> >
> > On Thu, Dec 13, 2018 at 3:34 PM James Y Knight <jyknight at google.com>
> wrote:
>
> > > We don't *need* it, no. But it might be useful.
>