How to subscribe to updates of a specific package?
I'd like to recieve some sort of notification when a new version of nss-pam-ldapd package is available on the archive.ubuntu.com repository.
Is there an email list or any other tool of this sort I can subscribe to?
package-management repository
New contributor
add a comment |
I'd like to recieve some sort of notification when a new version of nss-pam-ldapd package is available on the archive.ubuntu.com repository.
Is there an email list or any other tool of this sort I can subscribe to?
package-management repository
New contributor
3
No, there is no current mechanism or tool to notify you of specific package changes/updates in Ubuntu.
– Thomas Ward♦
9 hours ago
add a comment |
I'd like to recieve some sort of notification when a new version of nss-pam-ldapd package is available on the archive.ubuntu.com repository.
Is there an email list or any other tool of this sort I can subscribe to?
package-management repository
New contributor
I'd like to recieve some sort of notification when a new version of nss-pam-ldapd package is available on the archive.ubuntu.com repository.
Is there an email list or any other tool of this sort I can subscribe to?
package-management repository
package-management repository
New contributor
New contributor
New contributor
asked 9 hours ago
Tom MTom M
1062
1062
New contributor
New contributor
3
No, there is no current mechanism or tool to notify you of specific package changes/updates in Ubuntu.
– Thomas Ward♦
9 hours ago
add a comment |
3
No, there is no current mechanism or tool to notify you of specific package changes/updates in Ubuntu.
– Thomas Ward♦
9 hours ago
3
3
No, there is no current mechanism or tool to notify you of specific package changes/updates in Ubuntu.
– Thomas Ward♦
9 hours ago
No, there is no current mechanism or tool to notify you of specific package changes/updates in Ubuntu.
– Thomas Ward♦
9 hours ago
add a comment |
1 Answer
1
active
oldest
votes
You can setup special software on your machine or in your browser.
Use SiteDelta Watch addon in Firefox. It scans page or its region for changes and show notification if interesting area of page was changed. You need to do the following:
- install this addon from addons.mozilla.org
- open needed page https://packages.ubuntu.com/source/bionic/nss-pam-ldapd in Firefox
click SiteDelta Watch button on Firefox toolbar and click Monitor
Then click on down arrow to open right sidebar
Click Add new and select paragraph with version number
That is all, SiteDelta Watch will inform you on page change.
- install this addon from addons.mozilla.org
Other method is to set up local python watcher -
urlwatch
:
Install it
sudo apt install python3-pip python3-keyring
pip3 install urlwatch --user
pip3 uninstall keyring
Set it up according to recommendations from official GitHub page - create file
~/.config/urlwatch/urls.yaml
with contents:
name: "APT package watch"
url: "https://packages.ubuntu.com/source/bionic/nss-pam-ldapd"
filter:
- xpath: '//*[@id="content"]/h1'
- html2text: re
Run
urlwatch
first time manually and createcrontab
job for it. SMTP notifying is supported too.
Personally I use both - SiteDelta and URLWatch.
add a comment |
Your Answer
StackExchange.ready(function() {
var channelOptions = {
tags: "".split(" "),
id: "89"
};
initTagRenderer("".split(" "), "".split(" "), channelOptions);
StackExchange.using("externalEditor", function() {
// Have to fire editor after snippets, if snippets enabled
if (StackExchange.settings.snippets.snippetsEnabled) {
StackExchange.using("snippets", function() {
createEditor();
});
}
else {
createEditor();
}
});
function createEditor() {
StackExchange.prepareEditor({
heartbeatType: 'answer',
autoActivateHeartbeat: false,
convertImagesToLinks: true,
noModals: true,
showLowRepImageUploadWarning: true,
reputationToPostImages: 10,
bindNavPrevention: true,
postfix: "",
imageUploader: {
brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
allowUrls: true
},
onDemand: true,
discardSelector: ".discard-answer"
,immediatelyShowMarkdownHelp:true
});
}
});
Tom M is a new contributor. Be nice, and check out our Code of Conduct.
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2faskubuntu.com%2fquestions%2f1119913%2fhow-to-subscribe-to-updates-of-a-specific-package%23new-answer', 'question_page');
}
);
Post as a guest
Required, but never shown
1 Answer
1
active
oldest
votes
1 Answer
1
active
oldest
votes
active
oldest
votes
active
oldest
votes
You can setup special software on your machine or in your browser.
Use SiteDelta Watch addon in Firefox. It scans page or its region for changes and show notification if interesting area of page was changed. You need to do the following:
- install this addon from addons.mozilla.org
- open needed page https://packages.ubuntu.com/source/bionic/nss-pam-ldapd in Firefox
click SiteDelta Watch button on Firefox toolbar and click Monitor
Then click on down arrow to open right sidebar
Click Add new and select paragraph with version number
That is all, SiteDelta Watch will inform you on page change.
- install this addon from addons.mozilla.org
Other method is to set up local python watcher -
urlwatch
:
Install it
sudo apt install python3-pip python3-keyring
pip3 install urlwatch --user
pip3 uninstall keyring
Set it up according to recommendations from official GitHub page - create file
~/.config/urlwatch/urls.yaml
with contents:
name: "APT package watch"
url: "https://packages.ubuntu.com/source/bionic/nss-pam-ldapd"
filter:
- xpath: '//*[@id="content"]/h1'
- html2text: re
Run
urlwatch
first time manually and createcrontab
job for it. SMTP notifying is supported too.
Personally I use both - SiteDelta and URLWatch.
add a comment |
You can setup special software on your machine or in your browser.
Use SiteDelta Watch addon in Firefox. It scans page or its region for changes and show notification if interesting area of page was changed. You need to do the following:
- install this addon from addons.mozilla.org
- open needed page https://packages.ubuntu.com/source/bionic/nss-pam-ldapd in Firefox
click SiteDelta Watch button on Firefox toolbar and click Monitor
Then click on down arrow to open right sidebar
Click Add new and select paragraph with version number
That is all, SiteDelta Watch will inform you on page change.
- install this addon from addons.mozilla.org
Other method is to set up local python watcher -
urlwatch
:
Install it
sudo apt install python3-pip python3-keyring
pip3 install urlwatch --user
pip3 uninstall keyring
Set it up according to recommendations from official GitHub page - create file
~/.config/urlwatch/urls.yaml
with contents:
name: "APT package watch"
url: "https://packages.ubuntu.com/source/bionic/nss-pam-ldapd"
filter:
- xpath: '//*[@id="content"]/h1'
- html2text: re
Run
urlwatch
first time manually and createcrontab
job for it. SMTP notifying is supported too.
Personally I use both - SiteDelta and URLWatch.
add a comment |
You can setup special software on your machine or in your browser.
Use SiteDelta Watch addon in Firefox. It scans page or its region for changes and show notification if interesting area of page was changed. You need to do the following:
- install this addon from addons.mozilla.org
- open needed page https://packages.ubuntu.com/source/bionic/nss-pam-ldapd in Firefox
click SiteDelta Watch button on Firefox toolbar and click Monitor
Then click on down arrow to open right sidebar
Click Add new and select paragraph with version number
That is all, SiteDelta Watch will inform you on page change.
- install this addon from addons.mozilla.org
Other method is to set up local python watcher -
urlwatch
:
Install it
sudo apt install python3-pip python3-keyring
pip3 install urlwatch --user
pip3 uninstall keyring
Set it up according to recommendations from official GitHub page - create file
~/.config/urlwatch/urls.yaml
with contents:
name: "APT package watch"
url: "https://packages.ubuntu.com/source/bionic/nss-pam-ldapd"
filter:
- xpath: '//*[@id="content"]/h1'
- html2text: re
Run
urlwatch
first time manually and createcrontab
job for it. SMTP notifying is supported too.
Personally I use both - SiteDelta and URLWatch.
You can setup special software on your machine or in your browser.
Use SiteDelta Watch addon in Firefox. It scans page or its region for changes and show notification if interesting area of page was changed. You need to do the following:
- install this addon from addons.mozilla.org
- open needed page https://packages.ubuntu.com/source/bionic/nss-pam-ldapd in Firefox
click SiteDelta Watch button on Firefox toolbar and click Monitor
Then click on down arrow to open right sidebar
Click Add new and select paragraph with version number
That is all, SiteDelta Watch will inform you on page change.
- install this addon from addons.mozilla.org
Other method is to set up local python watcher -
urlwatch
:
Install it
sudo apt install python3-pip python3-keyring
pip3 install urlwatch --user
pip3 uninstall keyring
Set it up according to recommendations from official GitHub page - create file
~/.config/urlwatch/urls.yaml
with contents:
name: "APT package watch"
url: "https://packages.ubuntu.com/source/bionic/nss-pam-ldapd"
filter:
- xpath: '//*[@id="content"]/h1'
- html2text: re
Run
urlwatch
first time manually and createcrontab
job for it. SMTP notifying is supported too.
Personally I use both - SiteDelta and URLWatch.
edited 5 hours ago
answered 5 hours ago
N0rbertN0rbert
23.3k649111
23.3k649111
add a comment |
add a comment |
Tom M is a new contributor. Be nice, and check out our Code of Conduct.
Tom M is a new contributor. Be nice, and check out our Code of Conduct.
Tom M is a new contributor. Be nice, and check out our Code of Conduct.
Tom M is a new contributor. Be nice, and check out our Code of Conduct.
Thanks for contributing an answer to Ask Ubuntu!
- Please be sure to answer the question. Provide details and share your research!
But avoid …
- Asking for help, clarification, or responding to other answers.
- Making statements based on opinion; back them up with references or personal experience.
To learn more, see our tips on writing great answers.
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2faskubuntu.com%2fquestions%2f1119913%2fhow-to-subscribe-to-updates-of-a-specific-package%23new-answer', 'question_page');
}
);
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
3
No, there is no current mechanism or tool to notify you of specific package changes/updates in Ubuntu.
– Thomas Ward♦
9 hours ago